-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.extensions.graphql
41 lines (28 loc) · 1.44 KB
/
schema.extensions.graphql
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
scalar _KeyFieldSet
directive @key(fields: _KeyFieldSet!) on SCHEMA | OBJECT
directive @serializationType(name: String!) on SCALAR
directive @runtimeType(name: String!) on SCALAR
directive @enumValue(value: String!) on ENUM_VALUE
directive @rename(name: String!) on INPUT_FIELD_DEFINITION | INPUT_OBJECT | ENUM | ENUM_VALUE
extend schema @key(fields: "id")
extend scalar JSON
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::System.Text.Json.JsonElement")
extend scalar FileList
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::Heliosphere.FileList")
extend scalar Options
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::System.Collections.Generic.Dictionary<global::System.String, global::System.Collections.Generic.List<global::System.String>>")
extend scalar InstallerImageList
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::Heliosphere.InstallerImageList")
extend scalar BatchList
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::Heliosphere.BatchList")
extend scalar FileSwaps
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::Heliosphere.FileSwaps")
extend scalar JsSafeBigInt
@serializationType(name: "global::System.Text.Json.JsonElement")
@runtimeType(name: "global::System.UInt64")