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 10
10
runs-on : ubuntu-latest
11
11
strategy :
12
12
matrix :
13
- node-version : [10 .x, 12 .x, 14 .x]
13
+ node-version : [12 .x, 14 .x, 16 .x]
14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
- name : Use Node.js ${{ matrix.node-version }}
Original file line number Diff line number Diff line change 1
1
import type { InterfaceTypeComposer , SchemaComposer } from 'graphql-compose' ;
2
- import { MongoError , getMongoErrorOTC } from './MongoError' ;
2
+ import { getMongoErrorOTC } from './MongoError' ;
3
3
import { ValidationError , getValidationErrorOTC } from './ValidationError' ;
4
4
import { RuntimeError , getRuntimeErrorOTC } from './RuntimeError' ;
5
5
6
- export { MongoError , ValidationError , RuntimeError } ;
6
+ export { ValidationError , RuntimeError } ;
7
7
8
8
export function getErrorInterface ( schemaComposer : SchemaComposer < any > ) : InterfaceTypeComposer {
9
9
const ErrorInterface = schemaComposer . getOrCreateIFTC ( 'ErrorInterface' , ( iftc ) => {
You can’t perform that action at this time.
0 commit comments