chore: Use integer for IDs of resources

This commit is contained in:
Faruk AYDIN
2021-12-26 13:41:46 +03:00
committed by Ömer Faruk Aydın
parent a58411ee99
commit 3f2f1212c9
29 changed files with 172 additions and 103 deletions

View File

@@ -1,9 +1,9 @@
import { GraphQLString, GraphQLNonNull, GraphQLBoolean } from 'graphql';
import { GraphQLInt, GraphQLNonNull, GraphQLBoolean } from 'graphql';
import Connection from '../../models/connection';
import RequestWithCurrentUser from '../../types/express/request-with-current-user';
type Params = {
id: string,
id: number,
data: object
}
const deleteConnectionResolver = async (params: Params, req: RequestWithCurrentUser) => {
@@ -18,7 +18,7 @@ const deleteConnectionResolver = async (params: Params, req: RequestWithCurrentU
const deleteConnection = {
type: GraphQLBoolean,
args: {
id: { type: GraphQLNonNull(GraphQLString) }
id: { type: GraphQLNonNull(GraphQLInt) }
},
resolve: (_: any, params: Params, req: RequestWithCurrentUser) => deleteConnectionResolver(params, req)
};