Home
last modified time | relevance | path

Searched refs:graphql (Results 1 – 25 of 1350) sorted by relevance

12345678910>>...54

/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/testutil/
H A Drules_test_harness.go70 var dogType = graphql.NewObject(graphql.ObjectConfig{
281 Type: graphql.NewNonNull(graphql.Boolean),
293 Type: graphql.NewList(graphql.String),
315 Type: graphql.NewNonNull(graphql.Int),
363 Type: graphql.NewList(graphql.String),
379 Type: graphql.NewNonNull(graphql.Int),
382 Type: graphql.NewNonNull(graphql.Int),
403 Type: graphql.NewNonNull(graphql.Int),
406 Type: graphql.NewNonNull(graphql.Int),
462 graphql.NewDirective(graphql.DirectiveConfig{
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dennwc/graphql/testutil/
H A Drules_test_harness.go72 var dogType = graphql.NewObject(graphql.ObjectConfig{
280 Type: graphql.NewNonNull(graphql.Boolean),
292 Type: graphql.NewList(graphql.String),
314 Type: graphql.NewNonNull(graphql.Int),
362 Type: graphql.NewList(graphql.String),
378 Type: graphql.NewNonNull(graphql.Int),
381 Type: graphql.NewNonNull(graphql.Int),
402 Type: graphql.NewNonNull(graphql.Int),
405 Type: graphql.NewNonNull(graphql.Int),
461 graphql.NewDirective(graphql.DirectiveConfig{
[all …]
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/graphql-go/graphql/testutil/
H A Drules_test_harness.go71 var dogType = graphql.NewObject(graphql.ObjectConfig{
279 Type: graphql.NewNonNull(graphql.Boolean),
291 Type: graphql.NewList(graphql.String),
313 Type: graphql.NewNonNull(graphql.Int),
361 Type: graphql.NewList(graphql.String),
377 Type: graphql.NewNonNull(graphql.Int),
380 Type: graphql.NewNonNull(graphql.Int),
401 Type: graphql.NewNonNull(graphql.Int),
404 Type: graphql.NewNonNull(graphql.Int),
460 graphql.NewDirective(graphql.DirectiveConfig{
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dennwc/graphql/
H A Dvalidation_test.go10 var someScalarType = graphql.NewScalar(graphql.ScalarConfig{
107 return graphql.NewSchema(graphql.SchemaConfig{
108 Query: graphql.NewObject(graphql.ObjectConfig{
120 return graphql.NewSchema(graphql.SchemaConfig{
121 Query: graphql.NewObject(graphql.ObjectConfig{
146 return graphql.NewSchema(graphql.SchemaConfig{
168 return graphql.NewSchema(graphql.SchemaConfig{
1105 graphql.NewList(graphql.String),
1106 graphql.NewList(graphql.NewNonNull(graphql.String)),
1519 Type: graphql.NewNonNull(graphql.NewList(graphql.String)),
[all …]
H A Ddefinition_test.go12 var blogImage = graphql.NewObject(graphql.ObjectConfig{
26 var blogAuthor = graphql.NewObject(graphql.ObjectConfig{
70 var blogQuery = graphql.NewObject(graphql.ObjectConfig{
130 var enumType = graphql.NewEnum(graphql.EnumConfig{
360 Query: graphql.NewObject(graphql.ObjectConfig{
435 {graphql.NewNonNull(graphql.Int), "Int!"},
436 {graphql.NewList(graphql.Int), "[Int]"},
437 {graphql.NewNonNull(graphql.NewList(graphql.Int)), "[Int]!"},
438 {graphql.NewList(graphql.NewNonNull(graphql.Int)), "[Int!]"},
439 {graphql.NewList(graphql.NewList(graphql.Int)), "[[Int]]"},
[all …]
H A Dabstract_test.go29 petType := graphql.NewInterface(graphql.InterfaceConfig{
39 dogType := graphql.NewObject(graphql.ObjectConfig{
70 catType := graphql.NewObject(graphql.ObjectConfig{
101 Query: graphql.NewObject(graphql.ObjectConfig{
149 result := graphql.Do(graphql.Params{
236 Query: graphql.NewObject(graphql.ObjectConfig{
288 result := graphql.Do(graphql.Params{
342 Query: graphql.NewObject(graphql.ObjectConfig{
390 result := graphql.Do(graphql.Params{
520 result := graphql.Do(graphql.Params{
[all …]
H A Dexecutor_test.go164 Type: graphql.NewList(graphql.String),
313 Query: graphql.NewObject(graphql.ObjectConfig{
361 Query: graphql.NewObject(graphql.ObjectConfig{
1439 result := graphql.Do(graphql.Params{
1477 result := graphql.Do(graphql.Params{
1527 result := graphql.Do(graphql.Params{
1581 result := graphql.Do(graphql.Params{
1638 result := graphql.Do(graphql.Params{
1677 result := graphql.Do(graphql.Params{
1729 result := graphql.Do(graphql.Params{
[all …]
H A Dlists_test.go220 ttype := graphql.NewNonNull(graphql.NewList(graphql.Int))
236 ttype := graphql.NewNonNull(graphql.NewList(graphql.Int))
252 ttype := graphql.NewNonNull(graphql.NewList(graphql.Int))
575 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
591 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
614 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
637 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
658 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
686 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
714 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
[all …]
H A Dintrospection_test.go13 func g(t *testing.T, p graphql.Params) *graphql.Result {
18 emptySchema, err := graphql.NewSchema(graphql.SchemaConfig{
19 Query: graphql.NewObject(graphql.ObjectConfig{
847 Type: graphql.NewList(graphql.String),
851 testType := graphql.NewObject(graphql.ObjectConfig{
951 testType := graphql.NewObject(graphql.ObjectConfig{
989 testType := graphql.NewObject(graphql.ObjectConfig{
1048 testType := graphql.NewObject(graphql.ObjectConfig{
1117 testEnum := graphql.NewEnum(graphql.EnumConfig{
1132 testType := graphql.NewObject(graphql.ObjectConfig{
[all …]
H A Dexecutor_resolve_test.go13 Query: graphql.NewObject(graphql.ObjectConfig{
37 result := graphql.Do(graphql.Params{
60 result := graphql.Do(graphql.Params{
86 result := graphql.Do(graphql.Params{
97 result = graphql.Do(graphql.Params{
108 result = graphql.Do(graphql.Params{
154 result := graphql.Do(graphql.Params{
169 result = graphql.Do(graphql.Params{
183 result = graphql.Do(graphql.Params{
245 result = graphql.Do(graphql.Params{
[all …]
H A Dexecutor_schema_test.go76 blogImage := graphql.NewObject(graphql.ObjectConfig{
83 Type: graphql.Int,
86 Type: graphql.Int,
90 blogAuthor := graphql.NewObject(graphql.ObjectConfig{
93 "id": &graphql.Field{
121 blogArticle := graphql.NewObject(graphql.ObjectConfig{
125 Type: graphql.NewNonNull(graphql.String),
140 Type: graphql.NewList(graphql.String),
149 blogQuery := graphql.NewObject(graphql.ObjectConfig{
156 Type: graphql.ID,
[all …]
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/
H A Dvalidation_test.go10 var someScalarType = graphql.NewScalar(graphql.ScalarConfig{
107 return graphql.NewSchema(graphql.SchemaConfig{
108 Query: graphql.NewObject(graphql.ObjectConfig{
120 return graphql.NewSchema(graphql.SchemaConfig{
121 Query: graphql.NewObject(graphql.ObjectConfig{
146 return graphql.NewSchema(graphql.SchemaConfig{
168 return graphql.NewSchema(graphql.SchemaConfig{
1105 graphql.NewList(graphql.String),
1106 graphql.NewList(graphql.NewNonNull(graphql.String)),
1519 Type: graphql.NewNonNull(graphql.NewList(graphql.String)),
[all …]
H A Dabstract_test.go29 petType := graphql.NewInterface(graphql.InterfaceConfig{
39 dogType := graphql.NewObject(graphql.ObjectConfig{
70 catType := graphql.NewObject(graphql.ObjectConfig{
101 Query: graphql.NewObject(graphql.ObjectConfig{
149 result := graphql.Do(graphql.Params{
235 Query: graphql.NewObject(graphql.ObjectConfig{
286 result := graphql.Do(graphql.Params{
338 Query: graphql.NewObject(graphql.ObjectConfig{
386 result := graphql.Do(graphql.Params{
525 result := graphql.Do(graphql.Params{
[all …]
H A Ddefinition_test.go12 var blogImage = graphql.NewObject(graphql.ObjectConfig{
26 var blogAuthor = graphql.NewObject(graphql.ObjectConfig{
70 var blogQuery = graphql.NewObject(graphql.ObjectConfig{
130 var enumType = graphql.NewEnum(graphql.EnumConfig{
360 Query: graphql.NewObject(graphql.ObjectConfig{
435 {graphql.NewNonNull(graphql.Int), "Int!"},
436 {graphql.NewList(graphql.Int), "[Int]"},
437 {graphql.NewNonNull(graphql.NewList(graphql.Int)), "[Int]!"},
438 {graphql.NewList(graphql.NewNonNull(graphql.Int)), "[Int!]"},
439 {graphql.NewList(graphql.NewList(graphql.Int)), "[[Int]]"},
[all …]
H A Dexecutor_test.go164 Type: graphql.NewList(graphql.String),
1541 result := graphql.Do(graphql.Params{
1579 result := graphql.Do(graphql.Params{
1629 result := graphql.Do(graphql.Params{
1683 result := graphql.Do(graphql.Params{
1740 result := graphql.Do(graphql.Params{
1779 result := graphql.Do(graphql.Params{
1831 result := graphql.Do(graphql.Params{
1895 result := graphql.Do(graphql.Params{
1971 result := graphql.Do(graphql.Params{
[all …]
H A Dlists_test.go219 ttype := graphql.NewNonNull(graphql.NewList(graphql.Int))
235 ttype := graphql.NewNonNull(graphql.NewList(graphql.Int))
251 ttype := graphql.NewNonNull(graphql.NewList(graphql.Int))
613 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
629 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
657 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
683 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
704 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
737 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
769 ttype := graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphql.Int)))
[all …]
H A Dintrospection_test.go12 func g(t *testing.T, p graphql.Params) *graphql.Result {
17 emptySchema, err := graphql.NewSchema(graphql.SchemaConfig{
18 Query: graphql.NewObject(graphql.ObjectConfig{
846 Type: graphql.NewList(graphql.String),
850 testType := graphql.NewObject(graphql.ObjectConfig{
950 testType := graphql.NewObject(graphql.ObjectConfig{
988 testType := graphql.NewObject(graphql.ObjectConfig{
1047 testType := graphql.NewObject(graphql.ObjectConfig{
1116 testEnum := graphql.NewEnum(graphql.EnumConfig{
1131 testType := graphql.NewObject(graphql.ObjectConfig{
[all …]
H A Dexecutor_resolve_test.go13 Query: graphql.NewObject(graphql.ObjectConfig{
37 result := graphql.Do(graphql.Params{
60 result := graphql.Do(graphql.Params{
86 result := graphql.Do(graphql.Params{
97 result = graphql.Do(graphql.Params{
108 result = graphql.Do(graphql.Params{
154 result := graphql.Do(graphql.Params{
169 result = graphql.Do(graphql.Params{
183 result = graphql.Do(graphql.Params{
245 result = graphql.Do(graphql.Params{
[all …]
H A Dexecutor_schema_test.go76 blogImage := graphql.NewObject(graphql.ObjectConfig{
83 Type: graphql.Int,
86 Type: graphql.Int,
90 blogAuthor := graphql.NewObject(graphql.ObjectConfig{
93 "id": &graphql.Field{
121 blogArticle := graphql.NewObject(graphql.ObjectConfig{
125 Type: graphql.NewNonNull(graphql.String),
140 Type: graphql.NewList(graphql.String),
149 blogQuery := graphql.NewObject(graphql.ObjectConfig{
156 Type: graphql.ID,
[all …]
/dports/net/storj/storj-1.45.3/satellite/console/consoleweb/consoleql/
H A Dapikey.go24 return graphql.NewObject(graphql.ObjectConfig{
26 Fields: graphql.Fields{
48 return graphql.NewObject(graphql.ObjectConfig{
62 return graphql.NewInputObject(graphql.InputObjectConfig{
66 Type: graphql.NewNonNull(graphql.String),
69 Type: graphql.NewNonNull(graphql.Int),
72 Type: graphql.NewNonNull(graphql.Int),
75 Type: graphql.NewNonNull(graphql.Int),
78 Type: graphql.NewNonNull(graphql.Int),
85 return graphql.NewObject(graphql.ObjectConfig{
[all …]
H A Dproject.go107 return graphql.NewObject(graphql.ObjectConfig{
216 Type: graphql.NewNonNull(graphql.DateTime),
300 Type: graphql.NewNonNull(graphql.Int),
303 Type: graphql.NewNonNull(graphql.Int),
315 Type: graphql.NewNonNull(graphql.String),
318 Type: graphql.NewNonNull(graphql.Int),
321 Type: graphql.NewNonNull(graphql.Int),
329 return graphql.NewObject(graphql.ObjectConfig{
359 return graphql.NewObject(graphql.ObjectConfig{
386 return graphql.NewObject(graphql.ObjectConfig{
[all …]
H A Dprojectmember.go23 return graphql.NewObject(graphql.ObjectConfig{
25 Fields: graphql.Fields{
42 return graphql.NewInputObject(graphql.InputObjectConfig{
46 Type: graphql.NewNonNull(graphql.String),
49 Type: graphql.NewNonNull(graphql.Int),
52 Type: graphql.NewNonNull(graphql.Int),
55 Type: graphql.NewNonNull(graphql.Int),
58 Type: graphql.NewNonNull(graphql.Int),
65 return graphql.NewObject(graphql.ObjectConfig{
75 Type: graphql.Int,
[all …]
H A Dmutation.go62 return graphql.NewObject(graphql.ObjectConfig{
64 Fields: graphql.Fields{
89 Type: graphql.NewNonNull(graphql.String),
101 Type: graphql.NewNonNull(graphql.String),
135 Type: graphql.NewNonNull(graphql.String),
138 Type: graphql.NewNonNull(graphql.NewList(graphql.String)),
202 Type: graphql.NewNonNull(graphql.String),
205 Type: graphql.NewNonNull(graphql.NewList(graphql.String)),
240 Type: graphql.NewNonNull(graphql.String),
243 Type: graphql.NewNonNull(graphql.String),
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/.rubocop_todo/graphql/
H A Dordered_fields.yml4 - app/graphql/types/board_list_type.rb
5 - app/graphql/types/ci/analytics_type.rb
8 - app/graphql/types/ci/config/job_type.rb
11 - app/graphql/types/ci/group_type.rb
12 - app/graphql/types/ci/job_type.rb
15 - app/graphql/types/ci/runner_type.rb
16 - app/graphql/types/ci/stage_type.rb
19 - app/graphql/types/commit_type.rb
27 - app/graphql/types/diff_refs_type.rb
39 - app/graphql/types/issue_type.rb
[all …]
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/examples/crud/
H A Dmain.go43 graphql.ObjectConfig{
46 "id": &graphql.Field{
47 Type: graphql.Int,
63 graphql.ObjectConfig{
103 var mutationType = graphql.NewObject(graphql.ObjectConfig{
114 Type: graphql.NewNonNull(graphql.String),
120 Type: graphql.NewNonNull(graphql.Float),
144 Type: graphql.NewNonNull(graphql.Int),
189 Type: graphql.NewNonNull(graphql.Int),
216 func executeQuery(query string, schema graphql.Schema) *graphql.Result {
[all …]

12345678910>>...54