Skip to content

Commit a040baa

Browse files
authored
Update directives-tests-schema.graphql
1 parent f6d9208 commit a040baa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

graphql-server/tests/directives-tests-resources/directives-tests-schema.graphql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ directive @key(fields: [String!]!) on OBJECT
1313

1414
type DistinctTest {
1515
shouldBeDistinct: [DistinctTest] @distinct
16-
dummyField: Int
16+
testDummyField: Int
1717
}
1818

1919
type NoloopsTest {
2020
possibleLoop: [NoloopsTest] @noloops
21-
dummyField: Int
21+
testDummyField: Int
2222
}
2323

2424
type RequiredForTargetTarget {
25-
dummyField: Int
25+
testDummyField: Int
2626
}
2727

2828
type RequiredForTargetTest {
2929
target: RequiredForTargetTarget @requiredForTarget
3030
}
3131

3232
type UniqueForTargetTarget {
33-
dummyField: Int
33+
testDummyField: Int
3434
}
3535

3636
type UniqueForTargetTest {
3737
target: UniqueForTargetTarget @uniqueForTarget
38-
}
38+
}

0 commit comments

Comments
 (0)