Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Merge pull request #85 from multinet-app/include_gql_query_response
Browse files Browse the repository at this point in the history
Add 'query' param in graphql response dict
  • Loading branch information
jjnesbitt committed Jul 16, 2019
2 parents 7188be2 + 2c3675e commit ee99afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multinet/multinet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def graphql_query(query, variables=None):
logprint(error, level=logging.WARNING)
else:
errors = []
return dict(data=result.data, errors=errors)
return dict(data=result.data, errors=errors, query=query)


class MultiNet(Resource):
Expand Down

0 comments on commit ee99afd

Please sign in to comment.