This project is for using as a reference of GraphQL implementation into flutter projects with graphql_flutter package.
There are multiple examples in this repo and every example contains their own main method
- CRUD :
- Reading data from the server
- Sending data to the server
- Update
- And Delete
├── lib
│ ├── books_crud
│ │ ├── book_model.dart
│ │ ├── graphql_config.dart
│ │ ├── graphql_service.dart
│ │ ├── main.dart
│ ├── country_listing.dart
│ │ ├── graphql_queries.dart
│ │ ├── main.dart
├── main.dart
Clone the project
git clone https://github.com/abdulawalarif/graph_ql.gitGo to the project directory
cd graph_qlInstall dependencies
flutter pub getCopy the main method from the individual project you want to run and paste it into the project's main.
Connect a physical device or start a virtual device on your machine
flutter runIf you found an issue or would like to submit an improvement to this project, please submit an issue using the issues tab above. If you want to submit a PR with a fix, reference the issue you created!
- The Books Crud : The URL is not available anymore so it's not working.
The MIT License MIT. Please view the License File for more information.