Skip to content
This repository has been archived by the owner on Nov 8, 2021. It is now read-only.

1.3.0 - Query-based sync support

Compare
Choose a tag to compare
@nirinchev nirinchev released this 07 Nov 09:31
· 8 commits to master since this release

Added preliminary support for opening Query-based Realms (requires GraphQL service 3.4.0). To open a Realm in query-based mode, supply true as 4th argument to the GraphQLConfig.create call:

GraphQLConfig.create(
  user,
  "/someReferenceRealm", 
  /* authErrorHandler */ (err) => {
     console.error(err);
  },
  /* isQueryBasedSync */ true,