Remove unused files (#13612)

Remove a few unused files
This commit is contained in:
Félix Malfait
2025-08-04 22:35:36 +02:00
committed by GitHub
parent 69f2f94f50
commit 7383b0935c
4 changed files with 0 additions and 78 deletions
@@ -1,17 +0,0 @@
import { GraphQLID, GraphQLInputObjectType, GraphQLList } from 'graphql';
import { FilterIs } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/input/filter-is.input-type';
export const IDFilterType = new GraphQLInputObjectType({
name: 'IDFilter',
fields: {
eq: { type: GraphQLID },
gt: { type: GraphQLID },
gte: { type: GraphQLID },
in: { type: new GraphQLList(GraphQLID) },
lt: { type: GraphQLID },
lte: { type: GraphQLID },
neq: { type: GraphQLID },
is: { type: FilterIs },
},
});