As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I'm exploring converting to Kinvey as a backend, and have thus far been stifled by the suggested practices. I am able to create users and login fine, but have been unable to query from collections that I generated myself.
I created a Clients collection with Shared permissions using the Dashboard, manually inserted some records, and created a matching Entity in my Xcode project. I then instantiated a DataStore using:
let dsClient:DataStore<Client> = DataStore<Client>.collection()
Attempting a complex query bombs at runtime, so I started trying to query by ID using:
dsClient.find(byId: "57fdb5b8fd7a98be7b821a12", completionHandler: {(client, error) -> Void in
Richie Fortenberry
I'm exploring converting to Kinvey as a backend, and have thus far been stifled by the suggested practices. I am able to create users and login fine, but have been unable to query from collections that I generated myself.
I created a Clients collection with Shared permissions using the Dashboard, manually inserted some records, and created a matching Entity in my Xcode project. I then instantiated a DataStore using:
let dsClient:DataStore<Client> = DataStore<Client>.collection()
Attempting a complex query bombs at runtime, so I started trying to query by ID using:
dsClient.find(byId: "57fdb5b8fd7a98be7b821a12", completionHandler: {(client, error) -> Void in
print(client)
})
I get "nil" in the console. Any idea why?