How to get all Ids in a datastore?

The current API only let’s you access a single player’s datastore at a time, is there a way to get all of the ids in the datastore=

The only way I know how to do this is by using OrderedDataStore where you can use GetSortedAsync() which is described in the URL provided.

There will be, ListKeysAsync. Shipping with DataStore v1.1 and intended for use with GlobalDataStores. Otherwise, only method that lists all keys is GetSortedAsync but that only works with OrderedDataStores. Both are paginated.

1 Like

But ther isn’t yet? :shallow_pan_of_food:

Now? No, sadly. Don’t know when DataStore v1.1 is dropping, so you’re stuck to single queries.