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
Refers to a named type (e.g. something represented by `__Type` in GraphQL introspection).
95
+
Refers to a named type (e.g. something represented by `__typename` in a GraphQL
96
+
introspection call).
81
97
82
98
### `Type.attribute`
83
99
84
-
Refers to a named attribute on the named type. Not all types support this. For object types and interface types this is a field, for input objects this would be an input field, for enums this would be an enum value, for future GraphQL types this will relate to a related concept if they have one (e.g. for the [proposed "tagged" type](https://github.com/graphql/graphql-spec/pull/733) it would refer to the "member field").
100
+
Refers to a named attribute on the named type.
101
+
102
+
Not all types support this. For object types and interface types this is a field,
103
+
for input objects this would be an input field, for enums this would be an enum
104
+
value, for future GraphQL types this will relate to a related concept if they
105
+
have one (e.g. for the [proposed "tagged" type][tagged-typed] it would refer to
@@ -95,7 +119,7 @@ References the given named directive
95
119
96
120
References the named argument of the named directive.
97
121
98
-
##✨ Worked Examples
122
+
### ✨ Examples
99
123
100
124
For example, consider the following schema:
101
125
@@ -194,11 +218,12 @@ From the query above, we may calculate the following list of schema coordinates:
194
218
-`Business.owner`
195
219
-`Person.name`
196
220
197
-
_`Query.searchBusinesses(name:)` is also a valid member of the output set. The
221
+
`Query.searchBusinesses(name:)` is also a valid member of the output set. The
198
222
serialization algorithm may optionally choose to output all permutations of field
199
-
arguments used, should this be specified._
223
+
arguments used, should this be specified.
200
224
201
-
A library has been written to demonstrate this mapping: https://github.com/sharkcore/extract-schema-coordinates.
225
+
A library has been written to demonstrate this mapping:
0 commit comments