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

Releases: realm/realm-graphql

1.4.0 - Automatic token refreshes

04 Feb 14:47
Compare
Choose a tag to compare

Enhancements

  • The GraphQL client will now attempt to refresh the access token on an Unauthorized (401) response.

Compatibility

  • Compatible with all ROS 3.x releases.

1.3.0 - Query-based sync support

07 Nov 09:31
Compare
Choose a tag to compare

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,