subgrounds
subgrounds copied to clipboard
An intuitive Python library for interfacing with subgraphs and GraphQL
**Is your feature request related to a problem? Please describe.** `subgrounds/query.py` has all objects related to the AST of GraphQL. Currently, every object is frozen, but nested fields of said...
**Is your feature request related to a problem? Please describe.** Yes! Currently, Sugrounds supports auto-selection of FieldPaths. This means that if you use one of the querying methods (e.g.: `sg.query_df`)...
**Describe the bug** With `Subgrounds` feature of auto select when given a top-level field or entity, it automatically grabs every scalar field + every object field's id. This will clash...
**Is your feature request related to a problem? Please describe.** When doing long queries, data gathered towards the end of the query is no longer consistent with the beginning. **Describe...
**Is your feature request related to a problem? Please describe.** `._select` is pretty verbose, especially when forced to use it with keywords like `"from"` ```py subgraph.Query.snapshots._select("from") ``` **Describe the solution...
**Is your feature request related to a problem? Please describe.** Not a problem, but would reduced the need for unnecessary code. Essentially, when playing around with a subgraph's schema, it...
**Is your feature request related to a problem? Please describe.** I would like to build my queries and execute them separately. **Describe the solution you'd like** Serializable queries **Describe alternatives...
**Is your feature request related to a problem? Please describe.** I'd like an easy way to access in-depth metadata about a subgraph **Describe the solution you'd like** - **Describe alternatives...
**Is your feature request related to a problem? Please describe.** I want better tools when working with large subgrounds queries. I often deal with queries that can take overnight, so...
**Is your feature request related to a problem? Please describe.** When the Graph returns with an error model, I'd like Subgrounds to present those errors better so I can handle...