You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- (New!) Option to provide Obsidian with the search types your application uses, allowing data cached from complete dataset pulls to be accessible later on in searches for individual items
27
25
- (New!) Refactored server-side caching with Redis
28
26
- (New!) Rebuilt developer tool for Obsidian 8.0 for testing and analytics related to the new client caching options
29
-
- (New!) Option for persistant queries, allowing only a smaller hash to be sent to the server on client-side cache misses, minimizing the cost of queries. Note that while this will increase the performance for frequent, repeat queries, you may see a performance drop for new queries that haven't yet been persisted
30
-
- Flexible cache responds with only data requested from selected fields
27
+
- (New!) Option for persistent queries, allowing only a smaller hash to be sent to the server on client-side cache misses, minimizing the cost of queries. Note that while this will increase the overall performance for frequent, repeat queries.
28
+
- Flexible cache responds only with data requested from selected fields
31
29
- GraphQL query abstraction and caching improving the performance of your app
32
30
- SSR React wrapper, allowing you to cache in browser
33
31
- Configurable caching options, giving you complete control over your cache
@@ -63,12 +61,12 @@ const GraphQLRouter =
63
61
(await ObsidianRouter) <
64
62
ObsRouter >
65
63
{
66
-
Router,
64
+
Router,// your router in deno
67
65
typeDefs: types, // graphQL typeDefs
68
66
resolvers: resolvers, // graphQL resolvers
69
67
};
70
68
71
-
// attach the graphql routers routes to our app
69
+
// attach the graphql router's routes to your deno app
0 commit comments