There are several projects out there for GraphQL automation on RDBMS. Among them, Phrag focuses on keeping itself simple while providing full CRUD capabilities from a DB provided.
Phrag creates its GraphQL API from an existing RDBMS. It does not deal with DB management such as model definitions or migrations.
All or selected tables / views become queryable as root objects including nested objects of n-ary relationships in Phrag. This is for flexible data accesses without being constrained to certain query structures defined in GraphQL schema. Data can be accessed at the root level or as a nested object together with parent objects through the relationships.
In terms of query format, Phrag does not use a cursor connection. This is an intentional design decision since Phrag features a universal argument format across root level and nested objects for filtering, aggregation and pagination.
Phrag transforms a foreign key constraint into nested query objects of GraphQL as illustrated in the diagram below. This is a fundamental concept for Phrag to support multiple types of n-ary relationships:
Also Phrag does not treat many-to-many
relationships specially by skipping bridge table or in any other way. This is to keep Phrag's GraphQL simple by following what a database represents.
N+1 problem is an anti-pattern where a relationship query is executed for every one of retrieved records. Phrag's query resolver translates nested query objects into a single SQL query, leveraging lateral join / correlated subqueries with JSON functions.
Create
, update
and delete
mutations are created for each table. Primary keys work as an identitier of each record for mutations:
Phrag registers PK(s) of a table as a GraphQL object.
Create
mutation returns a PK object with generated values as a successful response.
Update
or delete
mutation requires the PK object as a parameter to identify the record for the operations.
Infinite nests: nested objects created for both origin and destination columns of foreign keys actually mean possible infinite nests, and it is possibly an attack surface when a user queries millions of nests. Phrag has a config value, max-nest-level
for this, and an error response will be returned when a query exceed the nest level specified.
Default limit: querying millions of records can be resource-intensive and we don't want it to happen accidentally. Config value of default-limit
can be used to apply default limit value when there's no limit
parameter specified in a query.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close