Skip to content

Instantly share code, notes, and snippets.

View vasilich6107's full-sized avatar

Vasiliy Ditsyak vasilich6107

View GitHub Profile
# ……………………………
dependencies:
# ……………………………
graphql_flutter: ^3.0.0-beta.3
path_provider: ^1.5.1
equatable: ^1.0.2
json_serializable: ^3.2.3
gql: 0.12.0
dev_dependencies:
query EmployeeData($id: ID!) {
employee(id: $id) {
firstName
id
}
}
@vasilich6107
vasilich6107 / .graphqlconfig
Created January 13, 2020 13:31
JSGraphQL plugin config
{
"name": "Schema",
"schemaPath": "my.schema.json",
"extensions": {
"endpoints": {
"Default": {
"url": "http://localhost:9002/graphql",
"introspect": true
}
}