We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4eea9 commit 7cafefbCopy full SHA for 7cafefb
spec/graphql/schema/build_from_definition_spec.rb
@@ -129,18 +129,25 @@ def assert_schema_and_compare_output(definition)
129
}
130
131
directive @foo(arg: InputA) on FIELD
132
+directive @bar(arg: InputA) on FIELD_DEFINITION
133
134
type Hello {
- int: Int
135
+ int: Int @bar(arg: { int: 1 })
136
137
138
input InputA {
139
value: InputB
140
+ value2: InputC
141
+ int: Int
142
143
144
input InputB {
145
value: InputA
146
147
+
148
+input InputC {
149
+ value: InputB
150
+}
151
SCHEMA
152
153
parsed_schema = GraphQL::Schema.from_definition(schema)
0 commit comments