(_source, args, context, queryInfo)
| 71 | }, |
| 72 | type: new GraphQLNonNull(classGraphQLOutputType || defaultGraphQLTypes.OBJECT), |
| 73 | async resolve(_source, args, context, queryInfo) { |
| 74 | try { |
| 75 | return await getQuery( |
| 76 | parseClass, |
| 77 | _source, |
| 78 | cloneArgs(args), |
| 79 | context, |
| 80 | queryInfo, |
| 81 | parseGraphQLSchema.parseClasses |
| 82 | ); |
| 83 | } catch (e) { |
| 84 | parseGraphQLSchema.handleError(e); |
| 85 | } |
| 86 | }, |
| 87 | }); |
| 88 | } |
| 89 |
nothing calls this directly
no test coverage detected
searching dependent graphs…