Skip to content

Commit d0dc5cd

Browse files
committed
unused fields
1 parent d3bed17 commit d0dc5cd

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

types/field.go

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
package types
22

3-
import "github.com/graph-gophers/graphql-go/errors"
4-
53
// FieldDefinition is a representation of a GraphQL FieldDefinition.
64
//
75
// http://spec.graphql.org/draft/#FieldDefinition
86
type FieldDefinition struct {
9-
Alias Ident
10-
Name Ident
11-
Arguments ArgumentsDefinition
12-
Type Type
13-
Directives DirectiveList
14-
Desc string
15-
Selections SelectionSet
16-
SelectionSetLoc errors.Location
7+
Alias Ident
8+
Name Ident
9+
Arguments ArgumentsDefinition
10+
Type Type
11+
Directives DirectiveList
12+
Desc string
1713
}
1814

1915
// FieldsDefinition is a list of an ObjectTypeDefinition's Fields.

0 commit comments

Comments
 (0)