Skip to content

Commit

Permalink
fix schema test
Browse files Browse the repository at this point in the history
  • Loading branch information
diesieben07 committed Dec 15, 2024
1 parent 27c92b8 commit d158018
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/projects/snapshots/schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ type MilestoneType implements Node & Named {
"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): IssueTypeConnection!
firstIssue: IssueType
firstIssueRequired: IssueType!
myIssues: [IssueType!]!
myBugsCount: Int!
asyncField(value: String!): String!
Expand Down Expand Up @@ -969,4 +971,4 @@ input PermDefinition {
The permission itself. If this is empty that means that we are checking for any permission for the given app.
"""
permission: String
}
}
4 changes: 3 additions & 1 deletion tests/projects/snapshots/schema_with_inheritance.gql
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ type MilestoneType implements Node & Named {
"""Returns the items in the list that come after the specified cursor."""
last: Int = null
): IssueTypeConnection!
firstIssue: IssueType
firstIssueRequired: IssueType!
myIssues: [IssueType!]!
myBugsCount: Int!
asyncField(value: String!): String!
Expand Down Expand Up @@ -429,4 +431,4 @@ type UserType implements Node {
isSuperuser: Boolean!
isStaff: Boolean!
fullName: String!
}
}

0 comments on commit d158018

Please sign in to comment.