You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If the schema definition is present it might contain a description and directives. It also contains a map of root operations. For example:
42
+
//
43
+
// schema {
44
+
// query: Query
45
+
// mutation: Mutation
46
+
// subscription: Subscription
47
+
// }
48
+
//
49
+
// type Query {
50
+
// # query fields go here
51
+
// }
52
+
//
53
+
// type Mutation {
54
+
// # mutation fields go here
55
+
// }
56
+
//
57
+
// type Subscription {
58
+
// # subscription fields go here
59
+
// }
60
+
//
61
+
// If the root operations have default names (i.e. Query, Mutation and Subscription), then the schema definition can be omitted. For example, this is equivalent to the above schema:
0 commit comments