graphql-limits

Graphql backend that assists you in securing your GraphQL API against malicious queries


License
MIT
Install
pip install graphql-limits==0.1.1

Documentation

graphql-limits

Features included:

Prerequisites

Installation

  • pip install graphql-limits

Usage example

query_string = '''
    query Test($first: Int) {
        viewer {
           books(first: $first) {
                author {
                    books(first: 4) {
                        author {
                            books(first: 100) {
                                author {
                                    id
                                }
                            }
                        }
                    }
                }
           }
        }
    }
'''
schema = graphene.Schema(query=Query)
backend = ProtectorBackend(nodes_limit=399, depth_limit=5, variable_values={'first': 2})
result = schema.execute(query_string, backend=backend, variable_values={'first': 2})