-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.graphqlconfig
39 lines (39 loc) · 926 Bytes
/
.graphqlconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "Untitled GraphQL Schema",
"schemaPath": "schema.graphql",
"extensions": {
"endpoints": {
"Default GraphQL Endpoint": {
"url": "https://bjqdpnjuyrhi7loznimshzuhhy.appsync-api.eu-west-2.amazonaws.com/graphql",
"headers": {
"user-agent": "JS GraphQL"
},
"introspect": false
}
},
"amplify": {
"version": 3
}
},
"projects": {
"socialsensing": {
"schemaPath": "amplify/backend/api/socialsensing/build/schema.graphql",
"includes": [
"src/graphql/**/*.graphql"
],
"excludes": [
"./amplify/**"
],
"extensions": {
"amplify": {
"codeGenTarget": "angular",
"generatedFileName": "src/app/API.service.ts",
"docsFilePath": "src/graphql",
"region": "eu-west-2",
"apiId": null,
"maxDepth": 2
}
}
}
}
}