getTableIds
The getTableIds
method returns the Ids
of every Table
in the Store
.
getTableIds(): Ids
Note that this returns a copy of, rather than a reference, to the list of Ids
, so changes made to the list are not made to the Store
itself.
Examples
This example retrieves the Table
Ids
in a Store
.
import {createStore} from 'tinybase';
const store = createStore().setTables({
pets: {fido: {species: 'dog'}},
species: {dog: {price: 5}},
});
console.log(store.getTableIds());
// -> ['pets', 'species']
This example retrieves the Table
Ids
of an empty Store
, returning an empty array.
import {createStore} from 'tinybase';
const store = createStore();
console.log(store.getTableIds());
// -> []
Since
v1.0.0