@kiwicom/smart-faq
Version:
Smart FAQ
62 lines (56 loc) • 1.21 kB
JavaScript
/**
* @flow
*/
/* eslint-disable */
;
/*::
import type { ConcreteFragment } from 'relay-runtime';
import type { FragmentReference } from 'relay-runtime';
declare export opaque type ArticleContent_article$ref: FragmentReference;
export type ArticleContent_article = {|
+id: string,
+title: ?string,
+perex: ?string,
+content: ?string,
+$refType: ArticleContent_article$ref,
|};
*/
const node/*: ConcreteFragment*/ = {
"kind": "Fragment",
"name": "ArticleContent_article",
"type": "FAQArticle",
"metadata": null,
"argumentDefinitions": [],
"selections": [
{
"kind": "ScalarField",
"alias": null,
"name": "id",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "title",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "perex",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "content",
"args": null,
"storageKey": null
}
]
};
(node/*: any*/).hash = 'c5c3622ca8d9a9b3677fa3d24f7f5eba';
module.exports = node;