11
22type Query {
3-
3+
44 faqQuestion (
55 question_id : String @doc (description : " Query by question_id." )
66 ): FaqQuestion @resolver ( class : " Lof\\ FaqGraphQl\\ Model\\ Resolver\\ FaqQuestion" ) @doc (description : " get list faq questions" )
@@ -13,7 +13,7 @@ type Query {
1313}
1414
1515type FaqQuestion {
16-
16+
1717 question_id : String @doc (description : "question_id" )
1818 title : String @doc (description : "title" )
1919 author_email : String @doc (description : "author_email" )
@@ -30,7 +30,7 @@ type FaqQuestion {
3030}
3131
3232type FaqCategory {
33-
33+
3434 category_id : String @doc (description : "category_id" )
3535 title : String @doc (description : "title" )
3636 page_title : String @doc (description : "page_title" )
@@ -40,15 +40,15 @@ type FaqCategory {
4040}
4141
4242type FaqTag {
43-
43+
4444 tag_id : String @doc (description : "tag_id" )
4545 question_id : String @doc (description : "question_id" )
4646 name : String @doc (description : "name" )
4747 alias : String @doc (description : "alias" )
4848}
4949
5050type Mutation {
51-
51+
5252 faqSubmitQuestion (
5353 title : String @doc (description : " Query by title." )
5454 author_email : String @doc (description : " Query by author_email." )
@@ -66,4 +66,4 @@ type Mutation {
6666 question_products : String @doc (description : " Query by question_products." )
6767 categories : String @doc (description : " Query by categories." )
6868 ): String @resolver ( class : " Lof\\ FaqGraphQl\\ Model\\ Resolver\\ FaqSubmitQuestion" ) @doc (description : " Submit faq question on product detail page" )
69- }
69+ }
0 commit comments