-
What is the correct way to query a
|
Beta Was this translation helpful? Give feedback.
Answered by
cbaker6
Jan 8, 2023
Replies: 1 comment 6 replies
-
The playgrounds has examples of how to use most of the features: You can also query like a standard query: let allRoleUsers = Role<User>.query(isNotNull(key: "name"))
let result = try await allRoleUsers.first() Be sure your CLP's and ACL's are setup correctly |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
vdkdamian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The playgrounds has examples of how to use most of the features:
Parse-Swift/ParseSwift.playground/Pages/12 - Roles and Relations.xcplaygroundpage/Contents.swift
Lines 173 to 193 in cabf542