kensho-technologies / graphql-compiler

Turn complex GraphQL queries into optimized database queries.
Apache License 2.0
550 stars 50 forks source link

[Query Planning Refactor]: SimpleExecute #1008

Open chewselene opened 3 years ago

chewselene commented 3 years ago

This is part of a larger refactor to streamline the way we generate query plans. This is the simplest form of query plan where the given query is executed against the database.

Future work includes adding paginated queries and cross database queries.

There are some outstanding TODOs mainly around how to best utilize provider_id to look up both the corresponding schema and corresponding database query execution function.