1
1
2
2
type Query {
3
-
3
+
4
4
faqQuestion (
5
5
question_id : String @doc (description : " Query by question_id." )
6
6
): FaqQuestion @resolver ( class : " Lof\\ FaqGraphQl\\ Model\\ Resolver\\ FaqQuestion" ) @doc (description : " get list faq questions" )
@@ -13,7 +13,7 @@ type Query {
13
13
}
14
14
15
15
type FaqQuestion {
16
-
16
+
17
17
question_id : String @doc (description : "question_id" )
18
18
title : String @doc (description : "title" )
19
19
author_email : String @doc (description : "author_email" )
@@ -30,7 +30,7 @@ type FaqQuestion {
30
30
}
31
31
32
32
type FaqCategory {
33
-
33
+
34
34
category_id : String @doc (description : "category_id" )
35
35
title : String @doc (description : "title" )
36
36
page_title : String @doc (description : "page_title" )
@@ -40,15 +40,15 @@ type FaqCategory {
40
40
}
41
41
42
42
type FaqTag {
43
-
43
+
44
44
tag_id : String @doc (description : "tag_id" )
45
45
question_id : String @doc (description : "question_id" )
46
46
name : String @doc (description : "name" )
47
47
alias : String @doc (description : "alias" )
48
48
}
49
49
50
50
type Mutation {
51
-
51
+
52
52
faqSubmitQuestion (
53
53
title : String @doc (description : " Query by title." )
54
54
author_email : String @doc (description : " Query by author_email." )
@@ -66,4 +66,4 @@ type Mutation {
66
66
question_products : String @doc (description : " Query by question_products." )
67
67
categories : String @doc (description : " Query by categories." )
68
68
): String @resolver ( class : " Lof\\ FaqGraphQl\\ Model\\ Resolver\\ FaqSubmitQuestion" ) @doc (description : " Submit faq question on product detail page" )
69
- }
69
+ }
0 commit comments