Skip to content

Commit

Permalink
fixes more
Browse files Browse the repository at this point in the history
  • Loading branch information
roneli committed Sep 17, 2023
1 parent fb7411a commit c658a26
Show file tree
Hide file tree
Showing 19 changed files with 744 additions and 154 deletions.
1 change: 1 addition & 0 deletions examples/simple/graph/fastgql.graphql
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
directive @generate(filter: Boolean = True, pagination: Boolean = True, ordering: Boolean = True, aggregate: Boolean = True, recursive: Boolean = True, wrapper: Boolean = False) on OBJECT
directive @generateFilterInput(name: String!, description: String) on OBJECT | INTERFACE
directive @generateMutations(create: Boolean = True, delete: Boolean = True, update: Boolean = True) on OBJECT
directive @goField(forceResolver: Boolean, name: String) on INPUT_FIELD_DEFINITION | FIELD_DEFINITION
directive @relation(type: _relationType!, fields: [String!]!, references: [String!]!, manyToManyTable: String = "", manyToManyFields: [String] = [], manyToManyReferences: [String] = []) on FIELD_DEFINITION
directive @skipGenerate(resolver: Boolean = True) on FIELD_DEFINITION
directive @table(name: String!, dialect: String! = "postgres", schema: String = "") on OBJECT | INTERFACE
Expand Down
18 changes: 18 additions & 0 deletions examples/simple/graph/fastgql_schema.graphql
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
input UserFilterInput {
name: StringComparator
age: IntComparator
someInnerValue: UserFilterInput
someInnerValueLis: UserFilterInput
"""
Logical AND of FilterInput
"""
AND: [UserFilterInput]
"""
Logical OR of FilterInput
"""
OR: [UserFilterInput]
"""
Logical NOT of FilterInput
"""
NOT: UserFilterInput
}
"""
max aggregator for User
"""
Expand Down
Loading

0 comments on commit c658a26

Please sign in to comment.