-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #441 from FgForrest/dev
Fixes release
- Loading branch information
Showing
123 changed files
with
4,670 additions
and
2,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.59 MB
documentation/blog/en/assets/images/12-evitalab-after-6-months.full.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+26.4 KB
documentation/blog/en/assets/images/12-evitaql-support-entity-grid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+95.8 KB
documentation/blog/en/assets/images/12-visualizer-histogram-narrowed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,265 changes: 1,265 additions & 0 deletions
1,265
documentation/publishing/root.cz/03-query-basics/03-query-basics.html
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions
37
documentation/publishing/root.cz/03-query-basics/deep-fetch-filtering-and-sorting.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
entityPrimaryKeyInSet(103885) | ||
), | ||
require( | ||
entityFetch( | ||
referenceContentWithAttributes( | ||
"parameterValues", | ||
filterBy( | ||
entityHaving( | ||
referenceHaving( | ||
"parameter", | ||
entityHaving( | ||
attributeContains("code", "r") | ||
) | ||
) | ||
) | ||
), | ||
orderBy( | ||
entityProperty( | ||
attributeNatural("code", DESC) | ||
) | ||
), | ||
entityFetch( | ||
attributeContent("code"), | ||
referenceContentWithAttributes( | ||
"parameter", | ||
entityFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) | ||
) | ||
) | ||
) | ||
) |
24 changes: 24 additions & 0 deletions
24
documentation/publishing/root.cz/03-query-basics/deep-fetch.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
entityPrimaryKeyInSet(103885), | ||
entityLocaleEquals("cs") | ||
), | ||
require( | ||
entityFetch( | ||
attributeContent("name"), | ||
referenceContentWithAttributes( | ||
"parameterValues", | ||
entityFetch( | ||
attributeContent("code", "name"), | ||
referenceContentWithAttributes( | ||
"parameter", | ||
entityFetch( | ||
attributeContent("code", "name") | ||
) | ||
) | ||
) | ||
) | ||
) | ||
) | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
documentation/publishing/root.cz/03-query-basics/facet-summary-impact.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
attributeEquals("status", "ACTIVE"), | ||
userFilter( | ||
facetHaving( | ||
"groups", | ||
entityHaving( | ||
attributeEquals("code", "sale") | ||
) | ||
) | ||
) | ||
), | ||
require( | ||
facetSummary( | ||
IMPACT, | ||
entityFetch( | ||
attributeContent("code") | ||
), | ||
entityGroupFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) | ||
) |
Binary file added
BIN
+106 KB
documentation/publishing/root.cz/03-query-basics/facet-summary-impact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions
29
documentation/publishing/root.cz/03-query-basics/facet-summary-of-reference.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
attributeEquals("status", "ACTIVE"), | ||
userFilter( | ||
facetHaving( | ||
"groups", | ||
entityHaving( | ||
attributeEquals("code", "sale") | ||
) | ||
) | ||
) | ||
), | ||
require( | ||
facetSummaryOfReference( | ||
"parameterValues", | ||
IMPACT, | ||
filterGroupBy( | ||
attributeEquals("isVisibleInFilter", true) | ||
), | ||
entityFetch( | ||
attributeContent("code") | ||
), | ||
entityGroupFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) | ||
) |
25 changes: 25 additions & 0 deletions
25
documentation/publishing/root.cz/03-query-basics/facet-summary.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
attributeEquals("status", "ACTIVE"), | ||
userFilter( | ||
facetHaving( | ||
"groups", | ||
entityHaving( | ||
attributeEquals("code", "sale") | ||
) | ||
) | ||
) | ||
), | ||
require( | ||
facetSummary( | ||
COUNTS, | ||
entityFetch( | ||
attributeContent("code") | ||
), | ||
entityGroupFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+24.5 KB
documentation/publishing/root.cz/03-query-basics/hierarchy-dataset.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions
13
documentation/publishing/root.cz/03-query-basics/hierarchy-mega-menu.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
query( | ||
collection("Product"), | ||
require( | ||
hierarchyOfReference( | ||
"categories", | ||
fromRoot( | ||
"megaMenu", | ||
entityFetch(attributeContent("code")), | ||
stopAt(level(2)) | ||
) | ||
) | ||
) | ||
) |
27 changes: 27 additions & 0 deletions
27
documentation/publishing/root.cz/03-query-basics/hierarchy-of-reference.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
hierarchyWithin( | ||
"categories", | ||
attributeEquals("code", "audio") | ||
) | ||
), | ||
require( | ||
hierarchyOfReference( | ||
"categories", | ||
fromRoot( | ||
"topLevel", | ||
entityFetch(attributeContent("code")), | ||
stopAt(level(1)) | ||
), | ||
parents( | ||
"parents", | ||
entityFetch(attributeContent("code")) | ||
), | ||
siblings( | ||
"siblings", | ||
entityFetch(attributeContent("code")) | ||
) | ||
) | ||
) | ||
) |
17 changes: 17 additions & 0 deletions
17
documentation/publishing/root.cz/03-query-basics/hierarchy-statistics.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
query( | ||
collection("Product"), | ||
require( | ||
hierarchyOfReference( | ||
"categories", | ||
fromRoot( | ||
"megaMenuWithCounts", | ||
entityFetch(attributeContent("code")), | ||
stopAt(level(2)), | ||
statistics( | ||
CHILDREN_COUNT, | ||
QUERIED_ENTITY_COUNT | ||
) | ||
) | ||
) | ||
) | ||
) |
17 changes: 17 additions & 0 deletions
17
documentation/publishing/root.cz/03-query-basics/hierarchy-within-excluding.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
hierarchyWithin( | ||
"categories", | ||
attributeEquals("code", "accessories"), | ||
excluding( | ||
attributeEquals("code", "wireless-headphones") | ||
) | ||
) | ||
), | ||
require( | ||
entityFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) |
20 changes: 20 additions & 0 deletions
20
documentation/publishing/root.cz/03-query-basics/hierarchy-within-having.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
hierarchyWithin( | ||
"categories", | ||
attributeEquals("code", "accessories"), | ||
having( | ||
or( | ||
attributeIsNull("validity"), | ||
attributeInRangeNow("validity") | ||
) | ||
) | ||
) | ||
), | ||
require( | ||
entityFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) |
14 changes: 14 additions & 0 deletions
14
documentation/publishing/root.cz/03-query-basics/hierarchy-within.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
hierarchyWithin( | ||
"categories", | ||
attributeEquals("code", "accessories") | ||
) | ||
), | ||
require( | ||
entityFetch( | ||
attributeContent("code") | ||
) | ||
) | ||
) |
18 changes: 18 additions & 0 deletions
18
documentation/publishing/root.cz/03-query-basics/histogram.evitaql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
query( | ||
collection("Product"), | ||
filterBy( | ||
priceValidInNow(), | ||
priceInPriceLists("basic"), | ||
priceInCurrency("EUR"), | ||
userFilter( | ||
priceBetween(100, 2000), | ||
attributeBetween( | ||
"battery-capacity", 2000, 6000 | ||
) | ||
) | ||
), | ||
require( | ||
priceHistogram(30), | ||
attributeHistogram(30, "battery-capacity") | ||
) | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.