Skip to content

Commit

Permalink
fix: dojo c
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Dec 17, 2024
1 parent f6eb92b commit 88a84f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/sdk/src/getEntities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export async function getEntities<T extends SchemaType>(
entity_models: entityModels,
clause,
dont_include_hashed_keys: false,
internal_updated_at: 0,
entity_updated_after: 0,
};

try {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/getEventMessages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export async function getEventMessages<T extends SchemaType>(
entity_models: entityModels,
clause,
dont_include_hashed_keys: false,
internal_updated_at: 0,
entity_updated_after: 0,
};

try {
Expand Down
6 changes: 3 additions & 3 deletions packages/state/src/recs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const getEntities = async <S extends Schema>(
order_by: orderBy,
entity_models: entityModels,
dont_include_hashed_keys: false,
internal_updated_at: time,
entity_updated_after: time,
});

if (dbConnection) {
Expand Down Expand Up @@ -226,7 +226,7 @@ export const getEvents = async <S extends Schema>(
order_by: orderBy,
entity_models: entityModels,
dont_include_hashed_keys: false,
internal_updated_at: 0,
entity_updated_after: 0,
},
historical
);
Expand Down Expand Up @@ -302,7 +302,7 @@ export const getEntitiesQuery = async <S extends Schema>(
order_by: orderBy,
entity_models: entityModels,
dont_include_hashed_keys: false,
internal_updated_at: 0,
entity_updated_after: 0,
});

while (continueFetching) {
Expand Down

0 comments on commit 88a84f1

Please sign in to comment.