Skip to content

Commit 928b831

Browse files
committed
Fix file location
1 parent b388751 commit 928b831

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/ParseGraphQLServer.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4980,7 +4980,7 @@ describe('ParseGraphQLServer', () => {
49804980
).toEqual(['someValue14', 'someValue17']);
49814981
});
49824982

4983-
fit('should support pagination', async () => {
4983+
it('should support pagination', async () => {
49844984
const numberArray = (first, last) => {
49854985
const array = [];
49864986
for (let i = first; i <= last; i++) {

src/GraphQL/loaders/defaultRelaySchema.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { nodeDefinitions, fromGlobalId } from 'graphql-relay';
22
import getFieldNames from 'graphql-list-fields';
33
import * as defaultGraphQLTypes from './defaultGraphQLTypes';
4-
import * as objectsQueries from './objectsQueries';
4+
import * as objectsQueries from '../helpers/objectsQueries';
55
import { extractKeysAndInclude } from './parseClassTypes';
66

77
const GLOBAL_ID_ATT = {

0 commit comments

Comments
 (0)