subgrounds icon indicating copy to clipboard operation
subgrounds copied to clipboard

A Pythonic data access layer for applications querying data from The Graph Network.

Results 13 subgrounds issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Missing data due to Incorrect pagination. **To Reproduce** Steps to reproduce the behavior: Query any subgraph which has e.g. a "timestamp" and should return > 1800 entities....

bug

## Description Create a special value `ALL` that can be used as the `first` argument in list queries to fetch all entities. ## Example ```python swaps = uniswapV2.Query.swaps( orderBy=uniswapV2.Swap.timestamp, orderDirection='desc',...

enhancement
in progress

**Is your feature request related to a problem? Please describe.** A lot of times, what I want to perform when creating a synthetic field is to post-process the queried value...

enhancement

**Is your feature request related to a problem? Please describe.** Yes. Currently, `SyntheticFields` must be explicitly added to a subgraph object. This works when synthetic fields do not need to...

enhancement

**Is your feature request related to a problem? Please describe.** Yes. When constructing `FieldPaths` with arguments, any extra arguments (i.e.: arguments which don't exist in the subgraph schema) are silently...

enhancement

## Description The Graph supports time-travel queries where one can optionally specify the block number at which query should be executed. This will execute the query against the state of...

enhancement

## Description Given a subgrounds fieldpath(s) representing a list of entities, then it should be possible to wrap those fieldpaths in a timeseries which would normalize the data according to...

enhancement
in progress

## Description Given a subgraph with a query field `entities` of type `[Entity!]!`, then `entities.first` and `entities.last` should produce a field path that represents the first and last of those...

enhancement

## Description [Networkx](https://github.com/networkx/networkx) is a Python graph manipulation and visualization library which is supported by Dash/Plotly (see https://plotly.com/python/network-graphs/). Integrating networkx in Subgrounds could provide interesting visualization options which (correct me...

enhancement

## Description Subgrounds should allow developers to query a single entity from an id. The query (and returned object) should only have scalar, non-list values. For nested fields returning non-scalar...

enhancement