Skip to content

Commit 55d04c7

Browse files
committed
fix import order
1 parent 62f6db6 commit 55d04c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/hypergraph/src/entity/findMany.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as Schema from 'effect/Schema';
33
import { deepMerge } from '../utils/internal/deep-merge.js';
44
import { isRelationField } from '../utils/isRelationField.js';
55
import { canonicalize } from '../utils/jsc.js';
6-
import { decodedEntitiesCache, type DecodedEntitiesCacheEntry, type QueryEntry } from './decodedEntitiesCache.js';
6+
import { type DecodedEntitiesCacheEntry, decodedEntitiesCache, type QueryEntry } from './decodedEntitiesCache.js';
77
import { entityRelationParentsMap } from './entityRelationParentsMap.js';
88
import { getEntityRelations } from './getEntityRelations.js';
99
import { hasValidTypesProperty } from './hasValidTypesProperty.js';

packages/hypergraph/test/entity/findMany.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ describe('findMany with filters', () => {
201201
expect(result.entities.map((e) => e.name).sort()).toEqual(['Bob', 'Jane']);
202202
});
203203

204-
it.only('should throw an error if NOT operator is used at the field level', () => {
204+
it('should throw an error if NOT operator is used at the field level', () => {
205205
// Create test entities
206206
Entity.create(handle, Person)({ name: 'John', age: 30, isActive: true });
207207
Entity.create(handle, Person)({ name: 'Jane', age: 25, isActive: true });

0 commit comments

Comments
 (0)