@quesmed/types-rn 2.5.92 → 2.5.93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.5.92",
3
+ "version": "2.5.93",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -1,5 +1,5 @@
1
1
  import { IBlogPost, IBlogTag } from '../../models';
2
- import { graphqlNormalize, RootData } from '../types';
2
+ import { RootData, graphqlNormalize } from '../types';
3
3
  export declare const BLOG_TAGS: import("@apollo/client").DocumentNode;
4
4
  export type IBlogTagsVar = null;
5
5
  export type IBlogTagsData = RootData<(graphqlNormalize & IBlogTag)[], 'blogTags'>;
@@ -25,8 +25,8 @@ exports.BLOG_POST = (0, client_1.gql) `
25
25
  `;
26
26
  exports.BLOG_POSTS = (0, client_1.gql) `
27
27
  ${blog_1.BLOG_POST_FIELDS}
28
- query BlogPosts($tags: [Int]!) {
29
- blogPosts(tagIds: $tags) {
28
+ query BlogPosts($tagIds: [Int]!) {
29
+ blogPosts(tagIds: $tagIds) {
30
30
  ...BlogPostFields
31
31
  relatedBlogPosts {
32
32
  ...BlogPostFields