Standard JSON:API endpoints for products, variants, and related resources.
Base URL: https://app.aico.swiss/{workspaceId}/api/v1
Authentication: All endpoints require a Bearer Token Auth header
Content Type: Accept: application/vnd.api+json
| # Nile Search Engine Filters & Sorts Documentation | |
| This document details how filters and sorts are implemented with Meilisearch in the Nile Shopify collection product grid. | |
| ## Table of Contents | |
| - [Overview](#overview) | |
| - [Filters](#filters) | |
| - [Size Filter](#size-filter) | |
| - [Color Filter](#color-filter) |
Standard JSON:API endpoints for products, variants, and related resources.
Base URL: https://app.aico.swiss/{workspaceId}/api/v1
Authentication: All endpoints require a Bearer Token Auth header
Content Type: Accept: application/vnd.api+json
| def fibo(n): | |
| '''returneaza al n-lea numar din sirul lui fibonacci''' | |
| if n==1: | |
| return 1 | |
| elif n==2: | |
| return 1 | |
| else: | |
| return fibo(n-1)+fibo(n-2) | |
| import random | |
| from datetime import date | |
| def generate(filename): | |
| typelist=['DEBUG','INFO','WARN','ERROR','FATAL','SEVERE'] | |
| classlist=['HelloExample','SaveAction','EditAction','DeleteProduct'] | |
| messagelist_debug=['Kritische Fehler beim Speichern','Ungültige Fehler','Debug mode activated','Record not found','This is fatal'] | |
| messagelist_info=['Updated succesfully record number 1','Updated succesfully record number 2','Updated succesfully record number 3','Updated succesfully record number 4','Updated succesfully record number 5'] |