forked from steipete/RepoBar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapollo-codegen.json
More file actions
56 lines (56 loc) · 1.24 KB
/
apollo-codegen.json
File metadata and controls
56 lines (56 loc) · 1.24 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"schemaNamespace": "RepoBarGraphQL",
"schemaDownloadConfiguration": {
"downloadMethod": {
"introspection": {
"endpointURL": "https://api.github.com/graphql",
"httpMethod": {
"POST": {}
},
"includeDeprecatedInputValues": false,
"outputFormat": "SDL"
}
},
"headers": {
"Authorization": "Bearer ${GITHUB_TOKEN}",
"User-Agent": "RepoBar-Codegen"
},
"outputPath": "GraphQL/schema.graphqls"
},
"input": {
"schemaSearchPaths": [
"GraphQL/schema.graphqls"
],
"operationSearchPaths": [
"GraphQL/**/*.graphql"
]
},
"output": {
"schemaTypes": {
"path": "Sources/RepoBar/API/Generated/SchemaTypes.swift",
"moduleType": {
"embeddedInTarget": {
"name": "RepoBar",
"accessModifier": "internal"
}
}
},
"operations": {
"inSchemaModule": {
"moduleType": {
"embeddedInTarget": {
"name": "RepoBar",
"accessModifier": "internal"
}
},
"operationIDsPath": "GraphQL/operation_ids.json"
}
},
"testMocks": {
"none": {}
}
},
"experimentalFeatures": {
"clientControlledNullability": true
}
}