Open RoProducts opened 1 month ago
Hi @RoProducts, what is the function signature for User.getGroups()
?
The function signature is
func getGroups(request: Request,arguments: NoArguments) throws -> EventLoopFuture<[Group]> {
[ ... ]
}
Hi,
I'm having issues creating a GraphQL schema with Graphiti containing a many-to-many relationship.
The setup is basically this :
I'm getting the error
The problem seems that
User
usesgroups
beforeGroup
is declared. Do you have a sample or some docs I didn't see how to pre-declare types in this scenario ?Thank you