Open ecaroth opened 3 months ago
This small PR adds support for optionally including a databaseId in your schema config, like so:
databaseId
schema(($) => ({ foor: $.collection<Foo>().sub({ bar: $.collection<Bar>(), }) }), { databaseId: 'my-database-id', // optionally specify unique databaseId for client or server options server: {app, databaseId: 'my-database-id'}, client: {app, databaseId, databaseId: 'my-database-id'} } )
Other notes: Fixed a very small bug with unit test for averages and small errors with Options typing also
This small PR adds support for optionally including a
databaseId
in your schema config, like so:Other notes: Fixed a very small bug with unit test for averages and small errors with Options typing also