forked from byme8/ZeroQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.verified.json
81 lines (81 loc) · 1.79 KB
/
schema.verified.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ZeroQLFileConfig",
"type": "object",
"additionalProperties": false,
"required": [
"graphql",
"namespace",
"clientName"
],
"properties": {
"$schema": {
"type": "string",
"description": "Stub property to set schema url"
},
"graphql": {
"type": "string",
"description": "The path to the graphql schema file"
},
"namespace": {
"type": "string",
"description": "The namespace for generated client",
"x-example": "UserService.GraphQL.Clients"
},
"clientName": {
"type": "string",
"description": "The client name for the generated client",
"x-example": "UserServiceGraphQLClient"
},
"visibility": {
"description": "The visibility within the assembly for the generated client",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/ClientVisibility"
}
]
},
"scalars": {
"type": [
"null",
"object"
],
"description": "The custom scalars to use when generating the client",
"additionalProperties": {
"type": "string"
}
},
"output": {
"type": [
"null",
"string"
],
"description": "The path to the output file",
"x-example": "./Generated/GraphQL.g.cs"
},
"netstandardCompatibility": {
"type": [
"boolean",
"null"
],
"description": "Enables netstandard compatibility during generation"
}
},
"definitions": {
"ClientVisibility": {
"type": "string",
"description": "",
"x-enumNames": [
"Public",
"Internal"
],
"enum": [
"Public",
"Internal"
]
}
}
}