File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 strategy :
1212 matrix :
13- node-version : [10 .x, 12 .x, 14 .x]
13+ node-version : [12 .x, 14 .x, 16 .x]
1414 steps :
1515 - uses : actions/checkout@v2
1616 - name : Use Node.js ${{ matrix.node-version }}
Original file line number Diff line number Diff line change 11import type { InterfaceTypeComposer , SchemaComposer } from 'graphql-compose' ;
2- import { MongoError , getMongoErrorOTC } from './MongoError' ;
2+ import { getMongoErrorOTC } from './MongoError' ;
33import { ValidationError , getValidationErrorOTC } from './ValidationError' ;
44import { RuntimeError , getRuntimeErrorOTC } from './RuntimeError' ;
55
6- export { MongoError , ValidationError , RuntimeError } ;
6+ export { ValidationError , RuntimeError } ;
77
88export function getErrorInterface ( schemaComposer : SchemaComposer < any > ) : InterfaceTypeComposer {
99 const ErrorInterface = schemaComposer . getOrCreateIFTC ( 'ErrorInterface' , ( iftc ) => {
You can’t perform that action at this time.
0 commit comments