Chris Kaminski
Chris Kaminski
License
Greetings! Does this project have a license?
It wasn't clear to me reading the project description, but why does this require privileged to be true?
Example
Is there an example about extending handle_request? I haven't been able to find an API I can add my own paths to the handle_request loop.
Using the schema: ``` type ContactMethod { id: ID name: String method_type: ContactMethodType method: ContactMethodValue } type Query { getContactById(id: ID) : Contact getContactsByName(search: String) : [Contact] #getContactsByContactMethod(search: String) :...