Add GQL where filter and nested order by params based on entity fields (#472)

* Add where filter equals fields based on entity fields

* Add different where filter operations for entity fields

* Add nested where filter for relation fields and filter params or & and

* Remove filters not required for derived fields

* Add nested order by params in schema

* Throw error on trying to sort by array or derived type fields

* Handle array fields while generating order by and where clauses

* Upgrade package versions

---------

Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
This commit is contained in:
Nabarun Gogoi 2023-11-16 12:38:47 +05:30 committed by GitHub
parent 5b95335fde
commit 3e898914ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 180 additions and 51 deletions

View File

@ -2,7 +2,7 @@
"packages": [ "packages": [
"packages/*" "packages/*"
], ],
"version": "0.2.71", "version": "0.2.72",
"npmClient": "yarn", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"command": { "command": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/cache", "name": "@cerc-io/cache",
"version": "0.2.71", "version": "0.2.72",
"description": "Generic object cache", "description": "Generic object cache",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/cli", "name": "@cerc-io/cli",
"version": "0.2.71", "version": "0.2.72",
"main": "dist/index.js", "main": "dist/index.js",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"scripts": { "scripts": {
@ -12,13 +12,13 @@
}, },
"dependencies": { "dependencies": {
"@apollo/client": "^3.7.1", "@apollo/client": "^3.7.1",
"@cerc-io/cache": "^0.2.71", "@cerc-io/cache": "^0.2.72",
"@cerc-io/ipld-eth-client": "^0.2.71", "@cerc-io/ipld-eth-client": "^0.2.72",
"@cerc-io/libp2p": "^0.42.2-laconic-0.1.4", "@cerc-io/libp2p": "^0.42.2-laconic-0.1.4",
"@cerc-io/nitro-node": "^0.1.15", "@cerc-io/nitro-node": "^0.1.15",
"@cerc-io/peer": "^0.2.71", "@cerc-io/peer": "^0.2.72",
"@cerc-io/rpc-eth-client": "^0.2.71", "@cerc-io/rpc-eth-client": "^0.2.72",
"@cerc-io/util": "^0.2.71", "@cerc-io/util": "^0.2.72",
"@ethersproject/providers": "^5.4.4", "@ethersproject/providers": "^5.4.4",
"@graphql-tools/utils": "^9.1.1", "@graphql-tools/utils": "^9.1.1",
"@ipld/dag-cbor": "^8.0.0", "@ipld/dag-cbor": "^8.0.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/codegen", "name": "@cerc-io/codegen",
"version": "0.2.71", "version": "0.2.72",
"description": "Code generator", "description": "Code generator",
"private": true, "private": true,
"main": "index.js", "main": "index.js",
@ -20,7 +20,7 @@
}, },
"homepage": "https://github.com/cerc-io/watcher-ts#readme", "homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": { "dependencies": {
"@cerc-io/util": "^0.2.71", "@cerc-io/util": "^0.2.72",
"@graphql-tools/load-files": "^6.5.2", "@graphql-tools/load-files": "^6.5.2",
"@poanet/solidity-flattener": "https://github.com/vulcanize/solidity-flattener.git", "@poanet/solidity-flattener": "https://github.com/vulcanize/solidity-flattener.git",
"@solidity-parser/parser": "^0.13.2", "@solidity-parser/parser": "^0.13.2",

View File

@ -4,7 +4,7 @@
import assert from 'assert'; import assert from 'assert';
import { GraphQLSchema, parse, printSchema, print, GraphQLDirective, GraphQLInt, GraphQLBoolean, GraphQLEnumType, DefinitionNode, GraphQLString, GraphQLNonNull } from 'graphql'; import { GraphQLSchema, parse, printSchema, print, GraphQLDirective, GraphQLInt, GraphQLBoolean, GraphQLEnumType, DefinitionNode, GraphQLString, GraphQLNonNull } from 'graphql';
import { ObjectTypeComposer, NonNullComposer, ObjectTypeComposerDefinition, ObjectTypeComposerFieldConfigMapDefinition, SchemaComposer } from 'graphql-compose'; import { ObjectTypeComposer, NonNullComposer, ObjectTypeComposerDefinition, ObjectTypeComposerFieldConfigMapDefinition, SchemaComposer, ListComposer, ComposeOutputType } from 'graphql-compose';
import { Writable } from 'stream'; import { Writable } from 'stream';
import { utils } from 'ethers'; import { utils } from 'ethers';
import { VariableDeclaration } from '@solidity-parser/parser/dist/src/ast-types'; import { VariableDeclaration } from '@solidity-parser/parser/dist/src/ast-types';
@ -164,6 +164,15 @@ export class Schema {
}); });
this._composer.addSchemaMustHaveType(inputTypeComposer); this._composer.addSchemaMustHaveType(inputTypeComposer);
// Add the BlockChangedFilter input needed in subgraph queries.
inputTypeComposer = this._composer.createInputTC({
name: BLOCK_CHANGED_FILTER,
fields: {
number_gte: 'Int!'
}
});
this._composer.addSchemaMustHaveType(inputTypeComposer);
// Add the OrderDirection enum needed in subgraph plural queries. // Add the OrderDirection enum needed in subgraph plural queries.
const orderDirectionEnum = new GraphQLEnumType({ const orderDirectionEnum = new GraphQLEnumType({
name: ORDER_DIRECTION, name: ORDER_DIRECTION,
@ -175,15 +184,6 @@ export class Schema {
const enumTypeComposer = this._composer.createEnumTC(orderDirectionEnum); const enumTypeComposer = this._composer.createEnumTC(orderDirectionEnum);
this._composer.addSchemaMustHaveType(enumTypeComposer); this._composer.addSchemaMustHaveType(enumTypeComposer);
// Add the BlockChangedFilter input needed in subgraph queries.
inputTypeComposer = this._composer.createInputTC({
name: BLOCK_CHANGED_FILTER,
fields: {
number_gte: 'Int!'
}
});
this._composer.addSchemaMustHaveType(inputTypeComposer);
// Add subgraph-schema entity queries to the schema composer. // Add subgraph-schema entity queries to the schema composer.
this._addSubgraphSchemaQueries(subgraphTypeDefs); this._addSubgraphSchemaQueries(subgraphTypeDefs);
} }
@ -212,11 +212,23 @@ export class Schema {
// Add plural query // Add plural query
const subgraphTypeComposer = this._composer.getOTC(subgraphType);
const subgraphTypeFields = subgraphTypeComposer.getFields();
// Create the subgraphType_orderBy enum type // Create the subgraphType_orderBy enum type
const subgraphTypeOrderByEnum = new GraphQLEnumType({ const subgraphTypeOrderByEnum = new GraphQLEnumType({
name: `${subgraphType}_orderBy`, name: `${subgraphType}_orderBy`,
values: (subgraphTypeDef.fields || []).reduce((acc: any, field) => { values: (subgraphTypeDef.fields || []).reduce((acc: any, field) => {
acc[field.name.value] = {}; acc[field.name.value] = {};
const subgraphTypeField = subgraphTypeComposer.getField(field.name.value);
const { isArray, isRelation, entityType } = this._getDetailsForSubgraphField(subgraphTypeField.type);
if (!isArray && isRelation) {
assert(entityType);
this._fillOrderByWithNestedFields(acc, entityType, field.name.value);
}
return acc; return acc;
}, {}) }, {})
}); });
@ -225,10 +237,65 @@ export class Schema {
// Create the subgraphType_filter input type // Create the subgraphType_filter input type
const subgraphTypeFilterComposer = this._composer.createInputTC({ const subgraphTypeFilterComposer = this._composer.createInputTC({
name: `${subgraphType}_filter`, name: `${subgraphType}_filter`,
// TODO: Add fields to filter input based on entity properties // Add fields to filter input based on entity properties
fields: {} fields: Object.entries(subgraphTypeFields).reduce((acc: {[key: string]: string}, [fieldName, field]) => {
const { type: fieldType, isArray, isRelation, entityType } = this._getDetailsForSubgraphField(field.type);
acc[fieldName] = fieldType;
acc[`${fieldName}_not`] = acc[fieldName];
if (!isArray) {
acc[`${fieldName}_gt`] = acc[fieldName];
acc[`${fieldName}_lt`] = acc[fieldName];
acc[`${fieldName}_gte`] = acc[fieldName];
acc[`${fieldName}_lte`] = acc[fieldName];
acc[`${fieldName}_in`] = `[${acc[fieldName]}!]`;
acc[`${fieldName}_not_in`] = `[${acc[fieldName]}!]`;
if (acc[fieldName] === 'String') {
acc[`${fieldName}_starts_with`] = acc[fieldName];
acc[`${fieldName}_starts_with_nocase`] = acc[fieldName];
acc[`${fieldName}_not_starts_with`] = acc[fieldName];
acc[`${fieldName}_not_starts_with_nocase`] = acc[fieldName];
acc[`${fieldName}_ends_with`] = acc[fieldName];
acc[`${fieldName}_ends_with_nocase`] = acc[fieldName];
acc[`${fieldName}_not_ends_with`] = acc[fieldName];
acc[`${fieldName}_not_ends_with_nocase`] = acc[fieldName];
}
}
if (isArray || acc[fieldName].includes('String') || acc[fieldName].includes('Bytes')) {
acc[`${fieldName}_contains`] = acc[fieldName];
acc[`${fieldName}_not_contains`] = acc[fieldName];
}
if (isArray || acc[fieldName].includes('String')) {
acc[`${fieldName}_contains_nocase`] = acc[fieldName];
acc[`${fieldName}_not_contains_nocase`] = acc[fieldName];
}
// Check if field is a relation type
if (isRelation) {
// Nested filter for relation field
acc[`${fieldName}_`] = `${entityType}_filter`;
// Remove filters if it is a derived field
if (field.directives && field.directives.some(directive => directive.name === 'derivedFrom')) {
delete acc[`${fieldName}`];
delete acc[`${fieldName}_not`];
delete acc[`${fieldName}_contains`];
delete acc[`${fieldName}_contains_nocase`];
delete acc[`${fieldName}_not_contains`];
delete acc[`${fieldName}_not_contains_nocase`];
}
}
return acc;
}, {})
}); });
subgraphTypeFilterComposer.setField('_change_block', BLOCK_CHANGED_FILTER); subgraphTypeFilterComposer.setField('_change_block', BLOCK_CHANGED_FILTER);
subgraphTypeFilterComposer.setField('and', `[${subgraphType}_filter]`);
subgraphTypeFilterComposer.setField('or', `[${subgraphType}_filter]`);
this._composer.addSchemaMustHaveType(subgraphTypeFilterComposer); this._composer.addSchemaMustHaveType(subgraphTypeFilterComposer);
// Create plural query name // Create plural query name
@ -253,6 +320,62 @@ export class Schema {
} }
} }
_getDetailsForSubgraphField (fieldType: ComposeOutputType<any>): {
type: string;
isArray: boolean;
isRelation: boolean;
entityType?: string;
} {
let type = fieldType.getTypeName();
let isArray = false;
let isRelation = false;
let entityType: string | undefined;
if (fieldType instanceof NonNullComposer) {
const unwrappedFieldType = fieldType.getUnwrappedTC() as ObjectTypeComposer;
if (fieldType.ofType instanceof ListComposer) {
isArray = true;
}
({ type, isRelation, entityType } = this._getDetailsForSubgraphField(unwrappedFieldType));
}
if (fieldType instanceof ListComposer) {
const childFieldType = fieldType.getUnwrappedTC() as ObjectTypeComposer;
({ type, isRelation, entityType } = this._getDetailsForSubgraphField(childFieldType));
isArray = true;
}
if (fieldType instanceof ObjectTypeComposer) {
type = 'String';
isRelation = true;
entityType = fieldType.getTypeName();
}
if (isArray) {
type = `[${type}!]`;
}
return { type, isArray, isRelation, entityType };
}
_fillOrderByWithNestedFields (orderByFields: {[key: string]: any}, entityName: string, fieldName: string): void {
const subgraphTypeComposer = this._composer.getOTC(entityName);
const subgraphTypeFields = subgraphTypeComposer.getFields();
Object.entries(subgraphTypeFields)
.filter(([, field]) => {
// Avoid nested ordering on array / relational / derived type fields
const { isRelation, isArray } = this._getDetailsForSubgraphField(field.type);
return !isRelation && !isArray;
})
.forEach(([name]) => {
orderByFields[`${fieldName}__${name}`] = {};
});
}
/** /**
* Adds basic types to the schema and typemapping. * Adds basic types to the schema and typemapping.
*/ */

View File

@ -41,12 +41,12 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme", "homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": { "dependencies": {
"@apollo/client": "^3.3.19", "@apollo/client": "^3.3.19",
"@cerc-io/cli": "^0.2.71", "@cerc-io/cli": "^0.2.72",
"@cerc-io/ipld-eth-client": "^0.2.71", "@cerc-io/ipld-eth-client": "^0.2.72",
"@cerc-io/solidity-mapper": "^0.2.71", "@cerc-io/solidity-mapper": "^0.2.72",
"@cerc-io/util": "^0.2.71", "@cerc-io/util": "^0.2.72",
{{#if (subgraphPath)}} {{#if (subgraphPath)}}
"@cerc-io/graph-node": "^0.2.71", "@cerc-io/graph-node": "^0.2.72",
{{/if}} {{/if}}
"@ethersproject/providers": "^5.4.4", "@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1", "debug": "^4.3.1",

View File

@ -1,10 +1,10 @@
{ {
"name": "@cerc-io/graph-node", "name": "@cerc-io/graph-node",
"version": "0.2.71", "version": "0.2.72",
"main": "dist/index.js", "main": "dist/index.js",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"devDependencies": { "devDependencies": {
"@cerc-io/solidity-mapper": "^0.2.71", "@cerc-io/solidity-mapper": "^0.2.72",
"@ethersproject/providers": "^5.4.4", "@ethersproject/providers": "^5.4.4",
"@graphprotocol/graph-ts": "^0.22.0", "@graphprotocol/graph-ts": "^0.22.0",
"@nomiclabs/hardhat-ethers": "^2.0.2", "@nomiclabs/hardhat-ethers": "^2.0.2",
@ -51,9 +51,9 @@
"dependencies": { "dependencies": {
"@apollo/client": "^3.3.19", "@apollo/client": "^3.3.19",
"@cerc-io/assemblyscript": "0.19.10-watcher-ts-0.1.2", "@cerc-io/assemblyscript": "0.19.10-watcher-ts-0.1.2",
"@cerc-io/cache": "^0.2.71", "@cerc-io/cache": "^0.2.72",
"@cerc-io/ipld-eth-client": "^0.2.71", "@cerc-io/ipld-eth-client": "^0.2.72",
"@cerc-io/util": "^0.2.71", "@cerc-io/util": "^0.2.72",
"@types/json-diff": "^0.5.2", "@types/json-diff": "^0.5.2",
"@types/yargs": "^17.0.0", "@types/yargs": "^17.0.0",
"bn.js": "^4.11.9", "bn.js": "^4.11.9",

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/ipld-eth-client", "name": "@cerc-io/ipld-eth-client",
"version": "0.2.71", "version": "0.2.72",
"description": "IPLD ETH Client", "description": "IPLD ETH Client",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
@ -20,8 +20,8 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme", "homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": { "dependencies": {
"@apollo/client": "^3.7.1", "@apollo/client": "^3.7.1",
"@cerc-io/cache": "^0.2.71", "@cerc-io/cache": "^0.2.72",
"@cerc-io/util": "^0.2.71", "@cerc-io/util": "^0.2.72",
"cross-fetch": "^3.1.4", "cross-fetch": "^3.1.4",
"debug": "^4.3.1", "debug": "^4.3.1",
"ethers": "^5.4.4", "ethers": "^5.4.4",

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/peer", "name": "@cerc-io/peer",
"version": "0.2.71", "version": "0.2.72",
"description": "libp2p module", "description": "libp2p module",
"main": "dist/index.js", "main": "dist/index.js",
"exports": "./dist/index.js", "exports": "./dist/index.js",

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/rpc-eth-client", "name": "@cerc-io/rpc-eth-client",
"version": "0.2.71", "version": "0.2.72",
"description": "RPC ETH Client", "description": "RPC ETH Client",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
@ -19,9 +19,9 @@
}, },
"homepage": "https://github.com/cerc-io/watcher-ts#readme", "homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": { "dependencies": {
"@cerc-io/cache": "^0.2.71", "@cerc-io/cache": "^0.2.72",
"@cerc-io/ipld-eth-client": "^0.2.71", "@cerc-io/ipld-eth-client": "^0.2.72",
"@cerc-io/util": "^0.2.71", "@cerc-io/util": "^0.2.72",
"chai": "^4.3.4", "chai": "^4.3.4",
"ethers": "^5.4.4", "ethers": "^5.4.4",
"left-pad": "^1.3.0", "left-pad": "^1.3.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/solidity-mapper", "name": "@cerc-io/solidity-mapper",
"version": "0.2.71", "version": "0.2.72",
"main": "dist/index.js", "main": "dist/index.js",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"devDependencies": { "devDependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/test", "name": "@cerc-io/test",
"version": "0.2.71", "version": "0.2.72",
"main": "dist/index.js", "main": "dist/index.js",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"private": true, "private": true,

View File

@ -1,6 +1,6 @@
{ {
"name": "@cerc-io/tracing-client", "name": "@cerc-io/tracing-client",
"version": "0.2.71", "version": "0.2.72",
"description": "ETH VM tracing client", "description": "ETH VM tracing client",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {

View File

@ -1,13 +1,13 @@
{ {
"name": "@cerc-io/util", "name": "@cerc-io/util",
"version": "0.2.71", "version": "0.2.72",
"main": "dist/index.js", "main": "dist/index.js",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.1", "@apollo/utils.keyvaluecache": "^1.0.1",
"@cerc-io/nitro-node": "^0.1.15", "@cerc-io/nitro-node": "^0.1.15",
"@cerc-io/peer": "^0.2.71", "@cerc-io/peer": "^0.2.72",
"@cerc-io/solidity-mapper": "^0.2.71", "@cerc-io/solidity-mapper": "^0.2.72",
"@cerc-io/ts-channel": "1.0.3-ts-nitro-0.1.1", "@cerc-io/ts-channel": "1.0.3-ts-nitro-0.1.1",
"@ethersproject/properties": "^5.7.0", "@ethersproject/properties": "^5.7.0",
"@ethersproject/providers": "^5.4.4", "@ethersproject/providers": "^5.4.4",
@ -52,7 +52,7 @@
"yargs": "^17.0.1" "yargs": "^17.0.1"
}, },
"devDependencies": { "devDependencies": {
"@cerc-io/cache": "^0.2.71", "@cerc-io/cache": "^0.2.72",
"@nomiclabs/hardhat-waffle": "^2.0.1", "@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/bunyan": "^1.8.8", "@types/bunyan": "^1.8.8",
"@types/express": "^4.17.14", "@types/express": "^4.17.14",

View File

@ -926,8 +926,9 @@ export class Database {
assert(operator); assert(operator);
let whereClause = ''; let whereClause = '';
// In case of array field having contains, NOT comes before the field name // In case of array field having contains:
// Disregards nocase // NOT comes before the field name
// Ignores nocase
if (columnIsArray && operator.includes('contains')) { if (columnIsArray && operator.includes('contains')) {
if (not) { if (not) {
whereClause += 'NOT '; whereClause += 'NOT ';
@ -1105,10 +1106,14 @@ export class Database {
const [orderBy, suffix] = orderByWithSuffix.split('__'); const [orderBy, suffix] = orderByWithSuffix.split('__');
const columnMetadata = repo.metadata.findColumnWithPropertyName(orderBy); const columnMetadata = repo.metadata.findColumnWithPropertyName(orderBy);
assert(columnMetadata); const relation = relations[orderBy];
// Ordering by array / derived type fields not supported
if (columnMetadata?.isArray || relation?.isDerived) {
throw new Error(`Ordering by \`${orderBy}\` is not supported for type \`${repo.metadata.name}\``);
}
// Handle nested entity sort // Handle nested entity sort
const relation = relations[orderBy];
if (suffix && relation) { if (suffix && relation) {
return this.orderQueryNested( return this.orderQueryNested(
repo, repo,
@ -1121,6 +1126,7 @@ export class Database {
); );
} }
assert(columnMetadata);
return selectQueryBuilder.addOrderBy( return selectQueryBuilder.addOrderBy(
`"${alias}"."${columnPrefix}${columnMetadata.databaseName}"`, `"${alias}"."${columnPrefix}${columnMetadata.databaseName}"`,
orderDirection === 'desc' ? 'DESC' : 'ASC' orderDirection === 'desc' ? 'DESC' : 'ASC'