python-graphql-relay
Port variant py310
Summary Relay library for graphql-core (3.10)
Package version 3.2.0
Homepage https://github.com/graphql-python/graphql-relay-py
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v11
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 23 JAN 2023, 06:04:31 UTC
Port created 01 JAN 2023, 17:21:46 UTC
Subpackage Descriptions
single # Relay Library for GraphQL Python GraphQL-relay-py is the [Relay] library for [GraphQL-core]. It allows the easy creation of Relay-compliant servers using GraphQL-core. GraphQL-Relay-Py is a Python port of [graphql-relay-js], while GraphQL-Core is a Python port of [GraphQL.js], the reference implementation of GraphQL for JavaScript. Since version 3, GraphQL-Relay-Py and GraphQL-Core support Python 3.6 and above only. For older versions of Python, you can use version 2 of these libraries. [PyPI version] ![Test Status] ![Lint Status] [Dependency Updates] [Python 3 Status] [Code Style] ## Getting Started A basic understanding of GraphQL and of the GraphQL Python implementation is needed to provide context for this library. An overview of GraphQL in general is available in the [README] for the [Specification for GraphQL]. This library is designed to work with the the [GraphQL-Core] Python reference implementation of a GraphQL server. An overview of the functionality that a Relay-compliant GraphQL server should provide is in the [GraphQL Relay Specification] on the [Relay website]. That overview describes a simple set of examples that exist as [tests] in this repository. A good way to get started with this repository is to walk through that documentation and the corresponding tests in this library together. ## Using Relay Library for GraphQL Python (graphql-core) Install Relay Library for GraphQL Python ```sh pip install graphql-core pip install graphql-relay ``` When building a schema for [GraphQL], the provided library functions can be used to simplify the creation of Relay patterns. All the functions that are explained in the following sections must be imported from the top level of the `graphql_relay` package, like this: `python from graphql_relay import connection_definitions ` ### Connections Helper functions are provided for both building the GraphQL types for connections and for implementing the `resolve` method for fields returning those types. - `connection_args` returns the arguments that fields should provide when they return a connection type that supports bidirectional pagination. - `forward_connection_args` returns the arguments that fields should provide when they return a connection type that only supports forward pagination. - `backward_connection_args` returns the arguments that fields should provide when they return a connection type that only supports backward pagination. - `connection_definitions` returns a `connection_type` and its associated `edgeType`, given a name and a node type. - `connection_from_array` is a helper method that takes an array and the arguments from `connection_args`, does pagination and filtering, and returns an object in the shape expected by a `connection_type`'s `resolve` function. - `cursor_for_object_in_connection` is a helper method that takes an array and a member object, and returns a cursor for use in the mutation payload. - `offset_to_cursor` takes the index of a member object in an array and returns an opaque cursor for use in the mutation payload. - `cursor_to_offset` takes an opaque cursor (created with `offset_to_cursor`) and returns the corresponding array index. An example usage of these methods from the [test schema]: ```python
Configuration Switches (platform-specific settings discarded)
PY310 ON Build using Python 3.10 PY311 OFF Build using Python 3.11
Package Dependencies by Type
Build (only) python-pip:single:py310
autoselect-python:single:standard
Build and Runtime python310:single:standard
Runtime (only) python-graphql-core:single:py310
Download groups
main mirror://PYPIWHL/74/16/a4cf06adbc711bd364a73ce043b0b08d8fa5aae3df11b6ee4248bcdad2e0
Distribution File Information
c9b22bd28b170ba1fe674c74384a8ff30a76c8e26f88ac3aa1584dd3179953e5 16940 graphql_relay-3.2.0-py3-none-any.whl
Ports that require python-graphql-relay:py310
python-graphene-django:py310 Graphene Django integration (3.10)
python-graphene:py310 GraphQL Framework for Python (3.10)