Skip to content

Commit

Permalink
generate GraphQL schema
Browse files Browse the repository at this point in the history
  • Loading branch information
vitek-rostislav committed Dec 17, 2024
1 parent f7e4663 commit 8c9c278
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 56 deletions.
42 changes: 21 additions & 21 deletions app/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -991,11 +991,11 @@ type LoginResult {

"One of the possible methods of the customer user login"
enum LoginTypeEnum {
web
admin
facebook
google
seznam
admin
web
}

type MainBlogCategoryData {
Expand Down Expand Up @@ -1473,11 +1473,11 @@ input OrderItemsFilterInput {

"One of possible types of the order item"
enum OrderItemTypeEnum {
discount
payment
product
discount
transport
rounding
transport
}

type OrderPaymentsConfig {
Expand All @@ -1489,14 +1489,14 @@ type OrderPaymentsConfig {

"Status of order"
enum OrderStatusEnum {
"New"
new
"In progress"
inProgress
"Done"
done
"Canceled"
canceled
"Done"
done
"In progress"
inProgress
"New"
new
}

"Information about pagination in a connection."
Expand Down Expand Up @@ -1877,8 +1877,8 @@ input ProductListInput {

"One of possible types of the product list"
enum ProductListTypeEnum {
WISHLIST
COMPARISON
WISHLIST
}

input ProductListUpdateInput {
Expand All @@ -1889,16 +1889,16 @@ input ProductListUpdateInput {

"One of possible ordering modes for product"
enum ProductOrderingModeEnum {
"Order by priority"
PRIORITY
"Order by price ascending"
PRICE_ASC
"Order by price descending"
PRICE_DESC
"Order by name ascending"
NAME_ASC
"Order by name descending"
NAME_DESC
"Order by price ascending"
PRICE_ASC
"Order by price descending"
PRICE_DESC
"Order by priority"
PRIORITY
"Order by relevance"
RELEVANCE
}
Expand Down Expand Up @@ -2460,14 +2460,14 @@ type StoreEdge {

"Status of store opening"
enum StoreOpeningStatusEnum {
"Store is currently opened"
OPEN
"Store is currently closed"
CLOSED
"Store will be opened soon"
OPEN_SOON
"Store will be closed soon"
CLOSED_SOON
"Store is currently opened"
OPEN
"Store will be opened soon"
OPEN_SOON
}

type Token {
Expand Down
70 changes: 35 additions & 35 deletions storefront/graphql/docs/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -11514,7 +11514,7 @@ One of the possible methods of the customer user login
</thead>
<tbody>
<tr>
<td valign="top"><strong>web</strong></td>
<td valign="top"><strong>admin</strong></td>
<td></td>
</tr>
<tr>
Expand All @@ -11530,7 +11530,7 @@ One of the possible methods of the customer user login
<td></td>
</tr>
<tr>
<td valign="top"><strong>admin</strong></td>
<td valign="top"><strong>web</strong></td>
<td></td>
</tr>
</tbody>
Expand All @@ -11549,23 +11549,23 @@ One of possible types of the order item
</thead>
<tbody>
<tr>
<td valign="top"><strong>payment</strong></td>
<td valign="top"><strong>discount</strong></td>
<td></td>
</tr>
<tr>
<td valign="top"><strong>product</strong></td>
<td valign="top"><strong>payment</strong></td>
<td></td>
</tr>
<tr>
<td valign="top"><strong>discount</strong></td>
<td valign="top"><strong>product</strong></td>
<td></td>
</tr>
<tr>
<td valign="top"><strong>transport</strong></td>
<td valign="top"><strong>rounding</strong></td>
<td></td>
</tr>
<tr>
<td valign="top"><strong>rounding</strong></td>
<td valign="top"><strong>transport</strong></td>
<td></td>
</tr>
</tbody>
Expand All @@ -11584,34 +11584,34 @@ Status of order
</thead>
<tbody>
<tr>
<td valign="top"><strong>new</strong></td>
<td valign="top"><strong>canceled</strong></td>
<td>

New
Canceled

</td>
</tr>
<tr>
<td valign="top"><strong>inProgress</strong></td>
<td valign="top"><strong>done</strong></td>
<td>

In progress
Done

</td>
</tr>
<tr>
<td valign="top"><strong>done</strong></td>
<td valign="top"><strong>inProgress</strong></td>
<td>

Done
In progress

</td>
</tr>
<tr>
<td valign="top"><strong>canceled</strong></td>
<td valign="top"><strong>new</strong></td>
<td>

Canceled
New

</td>
</tr>
Expand Down Expand Up @@ -11662,11 +11662,11 @@ One of possible types of the product list
</thead>
<tbody>
<tr>
<td valign="top"><strong>WISHLIST</strong></td>
<td valign="top"><strong>COMPARISON</strong></td>
<td></td>
</tr>
<tr>
<td valign="top"><strong>COMPARISON</strong></td>
<td valign="top"><strong>WISHLIST</strong></td>
<td></td>
</tr>
</tbody>
Expand All @@ -11685,42 +11685,42 @@ One of possible ordering modes for product
</thead>
<tbody>
<tr>
<td valign="top"><strong>PRIORITY</strong></td>
<td valign="top"><strong>NAME_ASC</strong></td>
<td>

Order by priority
Order by name ascending

</td>
</tr>
<tr>
<td valign="top"><strong>PRICE_ASC</strong></td>
<td valign="top"><strong>NAME_DESC</strong></td>
<td>

Order by price ascending
Order by name descending

</td>
</tr>
<tr>
<td valign="top"><strong>PRICE_DESC</strong></td>
<td valign="top"><strong>PRICE_ASC</strong></td>
<td>

Order by price descending
Order by price ascending

</td>
</tr>
<tr>
<td valign="top"><strong>NAME_ASC</strong></td>
<td valign="top"><strong>PRICE_DESC</strong></td>
<td>

Order by name ascending
Order by price descending

</td>
</tr>
<tr>
<td valign="top"><strong>NAME_DESC</strong></td>
<td valign="top"><strong>PRIORITY</strong></td>
<td>

Order by name descending
Order by priority

</td>
</tr>
Expand Down Expand Up @@ -11812,34 +11812,34 @@ Status of store opening
</thead>
<tbody>
<tr>
<td valign="top"><strong>OPEN</strong></td>
<td valign="top"><strong>CLOSED</strong></td>
<td>

Store is currently opened
Store is currently closed

</td>
</tr>
<tr>
<td valign="top"><strong>CLOSED</strong></td>
<td valign="top"><strong>CLOSED_SOON</strong></td>
<td>

Store is currently closed
Store will be closed soon

</td>
</tr>
<tr>
<td valign="top"><strong>OPEN_SOON</strong></td>
<td valign="top"><strong>OPEN</strong></td>
<td>

Store will be opened soon
Store is currently opened

</td>
</tr>
<tr>
<td valign="top"><strong>CLOSED_SOON</strong></td>
<td valign="top"><strong>OPEN_SOON</strong></td>
<td>

Store will be closed soon
Store will be opened soon

</td>
</tr>
Expand Down

0 comments on commit 8c9c278

Please sign in to comment.