A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and ReactJS.
-
Updated
Nov 25, 2020 - Python
{{ message }}
GraphQL is a data query language developed by Facebook. It provides an alternative to REST and ad-hoc webservice architectures. It allows clients to define the structure of the data required, and exactly the same structure of the data is returned from the server. It is a strongly typed runtime which allows clients to dictate what data is needed.
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and ReactJS.
The little ASGI framework that shines.
The next generation relational database.
Hey! When I was reading the docs and I saw api.background.task, the first thing that popped into my head was "but you can just use asyncio.create_task or loop,.run_in_executor for that without inventing something new!". But then I noticed that it also passes the context vars to the synchronous backround stuff, which is nice. Wonder why that's not the case in the stdlib, cause it would be nic
Ariadne is a Python library for implementing GraphQL servers using schema-first approach.
Our process_result default function at the moment doesn't return extensions, we should return them when set :)
Also might be good to change the typing for GraphQLHTTPResponse to allow to add more keys when needed :)
Modify the setup.py so it produce bdist_wheel for manylinux including the libgraphqlparser.so/a
Modify the build process so this wheel is uploaded to pypi
Modify the cffi part of tartiflette/parser so it loads this lib instead of the local one.
A modern API testing tool for web applications built with Open API and GraphQL specifications.
InQL - A Burp Extension for GraphQL Security Testing
JSON Web Token (JWT) authentication for Graphene Django
A GraphQL client in Python
Cookiecutter Django Vue is a template for Django-Vue projects.
Make a concise print function for the QueryPlanningAnalysis class https://github.com/kensho-technologies/graphql-compiler/blob/v2.0.0.dev25/graphql_compiler/cost_estimation/analysis.py#L381
In most cases, the printout of the analysis passes is enough to explain why a particular query plan was chosen.
GraphQLmap is a scripting engine to interact with a graphql endpoint for pentesting purposes.
Turn your API made with Django REST Framework(DRF) into a GraphQL like API.
Extras functionalities for Graphene-Django
A Python 3.6+ port of the GraphQL.js reference implementation of GraphQL.
A pragmatic styleguide for Django API Projects
Powerful, modern HTTP/REST client built on top of the Requests library
Loving this project.
I feel like this project would benefit from a short quick start tutorial that demonstrate common methods such as:
Create item
mutation = Operation(schema.Mutation) # note 'schema.'
mutation.create_item(input=dict(id="23432")).__fields__()
List items with filter
op = Operation(schema.Query) # note 'schema.'
op.list_it
Hi
I have been using graphene-mongo for a while now. I use all resolvers and mutations post validation of an Access token in the HTTP Authorization header. However, I am not aware of how I can do that for a MongoengineCollectionField
For example, I have defined it as follows
class Query(graphene.ObjectType):
all_projects_to_models = MongoengineConnectionField(Project)A highly opinionated Cookiecutter template that fuses together Django, Vue.js, GraphQL, and AWS into one full-stack web application.
Instant Graphql for MongoDb (active branch is golang, rewrite in process)
Created by Facebook
Released 2015
I have a custom input object type
and the query definition