GraphQL function is our main function it takes a GraphQL query compiles it
(c context.Context, r GraphqlReq)
| 878 | |
| 879 | // GraphQL function is our main function it takes a GraphQL query compiles it |
| 880 | func (gj *graphjinEngine) queryWithResult(c context.Context, r GraphqlReq) (res *Result, err error) { |
| 881 | resp, err := gj.query(c, r) |
| 882 | return &resp.res, err |
| 883 | } |
| 884 | |
| 885 | // GraphQL function is our main function it takes a GraphQL query compiles it |
| 886 | func (gj *graphjinEngine) query(c context.Context, r GraphqlReq) ( |