feat(runtime): Add "keys" and "excludeKeys" to fetch record api (#79)

Adding support for some more options when fetching a record.
91f9aca25b/src/Routers/ClassesRouter.js (L60-L68)
This commit is contained in:
Eric Tuvesson
2024-11-12 15:50:49 +01:00
committed by GitHub
parent fff03c05bf
commit 016837f466
4 changed files with 23 additions and 1 deletions

View File

@@ -227,6 +227,9 @@ declare namespace Noodl {
objectOrId: string | { getId(): string; },
options?: {
className?: RecordClassName;
keys?: string[] | string;
include?: string[] | string;
excludeKeys?: string[] | string;
}
): Promise<any>;