Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update useParseQuery.ts #132

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/parse-react-base/src/useParseQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ export interface UseParseQueryOptions<T extends Parse.Object<Parse.Attributes>>
enableLocalDatastore?: boolean;
enableLiveQuery?: boolean;
initialLoad?: InitialLoad<T>;
useMasterKey?: boolean
}

export interface UseParseQueryResult<T extends Parse.Object<Parse.Attributes>> extends ResultState<T> {
Expand All @@ -353,6 +354,7 @@ const useParseQuery = <T extends Parse.Object<Parse.Attributes>>(
enableLocalDatastore = true,
enableLiveQuery = true,
initialLoad,
useMasterKey = false
} = options || {};

const {
Expand Down Expand Up @@ -457,7 +459,7 @@ const useParseQuery = <T extends Parse.Object<Parse.Attributes>>(

let findResult;
try {
findResult = await parseServerQuery.find();
findResult = await parseServerQuery.find({useMasterKey:useMasterKey});
} catch (e) {
if (
e instanceof Parse.Error &&
Expand Down