{"id":16493821,"url":"https://github.com/linbudu599/flutter_graphql_example","last_synced_at":"2026-01-20T06:01:54.883Z","repository":{"id":37027707,"uuid":"300820259","full_name":"linbudu599/flutter_graphql_example","owner":"linbudu599","description":"Use GraphQL in Flutter. 💕","archived":false,"fork":false,"pushed_at":"2023-03-28T23:46:28.000Z","size":229,"stargazers_count":2,"open_issues_count":13,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-17T11:28:00.082Z","etag":null,"topics":["flutter","graphql","graphql-flutter"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linbudu599.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-03T07:15:32.000Z","updated_at":"2023-12-03T07:33:47.000Z","dependencies_parsed_at":"2024-10-28T16:11:23.836Z","dependency_job_id":null,"html_url":"https://github.com/linbudu599/flutter_graphql_example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/linbudu599/flutter_graphql_example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linbudu599%2Fflutter_graphql_example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linbudu599%2Fflutter_graphql_example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linbudu599%2Fflutter_graphql_example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linbudu599%2Fflutter_graphql_example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linbudu599","download_url":"https://codeload.github.com/linbudu599/flutter_graphql_example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linbudu599%2Fflutter_graphql_example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28597087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter","graphql","graphql-flutter"],"created_at":"2024-10-11T14:10:49.149Z","updated_at":"2026-01-20T06:01:54.868Z","avatar_url":"https://github.com/linbudu599.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter-GraphQL-Example\n\nA simple demo shows basic usage of combination of `Flutter` \u0026 `GraphQL`.\n\n## Article\n\n**[WIP]** [在 Flutter 中使用 GraphQL](./docs/README.md)\n\n## Notice\n\nTo solve **'Insecure HTTP is not allowed by platform' Error**, You will need to do these things:\n\nFor Android:\n\n- Create [`/res/xml/network_security_config.xml`](android/app/src/main/res/xml/network_security_config.xml).\n- Edit [`AndroidManifest.xml`](android/app/src/main/AndroidManifest.xml).\n\n```xml\n\u003c!-- network_security_config.xml --\u003e\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cnetwork-security-config\u003e\n    \u003cbase-config cleartextTrafficPermitted=\"true\" /\u003e\n\u003c/network-security-config\u003e\n\n\u003c!-- AndroidManifest.xml --\u003e\n\u003cmanifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.example.flutter_graphql_example\"\u003e\n   \u003capplication\n        android:networkSecurityConfig=\"@xml/network_security_config\"\u003e\n    \u003c!-- ... --\u003e\n    \u003c/application\u003e\n\u003c/manifest\u003e\n\n```\n\nFor IOS:\n\n- Add [NSExceptionDomains( NSExceptionAllowsInsecureHTTPLoads )](https://developer.apple.com/documentation/bundleresources/information_property_list/nsapptransportsecurity/nsexceptiondomains) to `Info.plist` in `/ios/Runner/Info.plist` folder.\n\nAbove actions are required so that we can use **HTTP instead of HTTPS** request in Emulator Device, see [here](https://flutter.dev/docs/release/breaking-changes/network-policy-ios-android#migration-guide) for more details about.\n\n## Prerequisites\n\n**Make sure you've already finished required environment setup, including:**\n\n- `nodejs`\n- `flutter` \u0026 `dart`\n- `Android/IOS Emulator`\n\n## Usage\n\n- **Declarative Usage**: [ToDo List](lib/todolist/todolist.dart)\n\n```bash\ngit clone git@github.com:linbudu599/flutter_graphql_example.git\n\ncd flutter_graphql_example\n```\n\n### Server\n\n```bash\ncd ./server\n\nnpm install\n\nnpm run dev\n```\n\n\u003e Powered by [Koa-GraphQL](https://github.com/graphql-community/koa-graphql) \u0026 [LowDB](https://github.com/typicode/lowdb)\n\u003e\n\u003e Edit [todo.ts](./server/todo.ts) to use the content you like.\n\nAs server gets ready, you can visit\n\n- [http://localhost:4000/graphql](http://localhost:4000/graphql)\n\nto check your **GraphQL Server** easily by [**GraphiQL**](https://github.com/graphql/graphiql), which contains definition of `Query` / `Mutation` info.\n\n### Client\n\n```bash\ndart pub get\nflutter run .\\lib\\main.dart\n```\n\n\u003e Powered by [graphql-flutter package](https://pub.dev/packages/graphql_flutter)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinbudu599%2Fflutter_graphql_example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinbudu599%2Fflutter_graphql_example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinbudu599%2Fflutter_graphql_example/lists"}