-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change cwd to load gqlgen config correctly (#103)
Code copied from 99designs/gqlgen#1511
- Loading branch information
Showing
10 changed files
with
246 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
""" | ||
CategoryWhereInput is used for filtering Category objects. | ||
Input was generated by ent. | ||
""" | ||
input CategoryWhereInput { | ||
not: CategoryWhereInput | ||
and: [CategoryWhereInput!] | ||
or: [CategoryWhereInput!] | ||
|
||
"""text field predicates""" | ||
text: String | ||
textNEQ: String | ||
textIn: [String!] | ||
textNotIn: [String!] | ||
textGT: String | ||
textGTE: String | ||
textLT: String | ||
textLTE: String | ||
textContains: String | ||
textHasPrefix: String | ||
textHasSuffix: String | ||
textEqualFold: String | ||
textContainsFold: String | ||
|
||
"""status field predicates""" | ||
status: CategoryStatus | ||
statusNEQ: CategoryStatus | ||
statusIn: [CategoryStatus!] | ||
statusNotIn: [CategoryStatus!] | ||
|
||
"""todos edge predicates""" | ||
hasTodos: Boolean | ||
hasTodosWith: [TodoWhereInput!] | ||
} | ||
|
||
""" | ||
TodoWhereInput is used for filtering Todo objects. | ||
Input was generated by ent. | ||
""" | ||
input TodoWhereInput { | ||
not: TodoWhereInput | ||
and: [TodoWhereInput!] | ||
or: [TodoWhereInput!] | ||
|
||
"""created_at field predicates""" | ||
createdAt: Time | ||
createdAtNEQ: Time | ||
createdAtIn: [Time!] | ||
createdAtNotIn: [Time!] | ||
createdAtGT: Time | ||
createdAtGTE: Time | ||
createdAtLT: Time | ||
createdAtLTE: Time | ||
|
||
"""status field predicates""" | ||
status: Status | ||
statusNEQ: Status | ||
statusIn: [Status!] | ||
statusNotIn: [Status!] | ||
|
||
"""priority field predicates""" | ||
priority: Int | ||
priorityNEQ: Int | ||
priorityIn: [Int!] | ||
priorityNotIn: [Int!] | ||
priorityGT: Int | ||
priorityGTE: Int | ||
priorityLT: Int | ||
priorityLTE: Int | ||
|
||
"""text field predicates""" | ||
text: String | ||
textNEQ: String | ||
textIn: [String!] | ||
textNotIn: [String!] | ||
textGT: String | ||
textGTE: String | ||
textLT: String | ||
textLTE: String | ||
textContains: String | ||
textHasPrefix: String | ||
textHasSuffix: String | ||
textEqualFold: String | ||
textContainsFold: String | ||
|
||
"""parent edge predicates""" | ||
hasParent: Boolean | ||
hasParentWith: [TodoWhereInput!] | ||
|
||
"""children edge predicates""" | ||
hasChildren: Boolean | ||
hasChildrenWith: [TodoWhereInput!] | ||
|
||
"""category edge predicates""" | ||
hasCategory: Boolean | ||
hasCategoryWith: [CategoryWhereInput!] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.