Skip to content

Commit

Permalink
fix: group row hoisting (#2683)
Browse files Browse the repository at this point in the history
Co-authored-by: Jarrod Flesch <jarrodmflesch@gmail.com>
Co-authored-by: James <james@trbl.design>
Co-authored-by: Jacob Fletcher <jacobsfletch@gmail.com>
  • Loading branch information
4 people committed Jun 2, 2023
1 parent a2f8d95 commit 1626e17
Showing 1 changed file with 34 additions and 28 deletions.
62 changes: 34 additions & 28 deletions test/graphql-schema-gen/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ input Collection1_testing_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
}

input Collection1_title_operator {
Expand All @@ -96,8 +96,8 @@ input Collection1_title_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
}

input Collection1_meta__title_operator {
Expand All @@ -106,8 +106,8 @@ input Collection1_meta__title_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand All @@ -117,8 +117,8 @@ input Collection1_meta__description_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand All @@ -128,8 +128,8 @@ input Collection1_meta__id_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand Down Expand Up @@ -161,8 +161,8 @@ input Collection1_id_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand Down Expand Up @@ -494,8 +494,8 @@ input Collection2_meta__title_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand All @@ -505,8 +505,8 @@ input Collection2_meta__description_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand All @@ -516,8 +516,8 @@ input Collection2_meta__id_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand All @@ -527,8 +527,8 @@ input Collection2_nestedGroup__meta__title_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand All @@ -538,8 +538,8 @@ input Collection2_nestedGroup__meta__description_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand Down Expand Up @@ -571,8 +571,8 @@ input Collection2_id_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand Down Expand Up @@ -864,6 +864,8 @@ type User {
email: EmailAddress
resetPasswordToken: String
resetPasswordExpiration: DateTime
salt: String
hash: String
loginAttempts: Float
lockUntil: DateTime
password: String!
Expand Down Expand Up @@ -925,8 +927,8 @@ input User_email_operator {
like: EmailAddress
contains: EmailAddress
in: [EmailAddress]
not_in: [[EmailAddress]]
all: [[[EmailAddress]]]
not_in: [EmailAddress]
all: [EmailAddress]
exists: Boolean
}

Expand All @@ -936,8 +938,8 @@ input User_id_operator {
like: String
contains: String
in: [String]
not_in: [[String]]
all: [[[String]]]
not_in: [String]
all: [String]
exists: Boolean
}

Expand Down Expand Up @@ -1856,6 +1858,8 @@ input mutationUserInput {
email: String
resetPasswordToken: String
resetPasswordExpiration: String
salt: String
hash: String
loginAttempts: Float
lockUntil: String
password: String!
Expand All @@ -1867,6 +1871,8 @@ input mutationUserUpdateInput {
email: String
resetPasswordToken: String
resetPasswordExpiration: String
salt: String
hash: String
loginAttempts: Float
lockUntil: String
password: String
Expand Down

0 comments on commit 1626e17

Please sign in to comment.