Skip to content

Commit 9b749f2

Browse files
committed
linting
1 parent 72c27ef commit 9b749f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/actions/query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default class Query extends Action {
3131
if (multiple === undefined) multiple = !filter['id'];
3232

3333
// Build query
34-
const query = QueryBuilder.buildQuery('query', model, name, filter, multiple, false);
34+
const query = QueryBuilder.buildQuery('query', model, name, filter, multiple, false);
3535

3636
// Send the request to the GraphQL API
3737
const data = await context.apollo.request(model, query, filter, false, bypassCache as boolean);

src/vuex-orm-apollo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {PatchedModel, Options, ActionParams} from './support/interfaces';
1+
import { PatchedModel, Options, ActionParams } from './support/interfaces';
22
import Context from './common/context';
33
import { Components } from '@vuex-orm/core/lib/plugins/use';
44
import { Destroy, Fetch, Mutate, Persist, Push } from './actions';

0 commit comments

Comments
 (0)