{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "vayu-blocks/advance-query-loop",
  "title": "Advance Query Block",
  "category": "vayu-blocks",
  "description": "A block to display posts with advanced filtering options.",
  "keywords": [
    "query block",
    "advance query block",
    "posts",
    "blog",
    "custom post",
    "woocommerce product"
  ],
  "textdomain": "vayu-blocks",
  "attributes": {
    "id": {
      "type": "string"
    },
    "uniqueId": {
      "type": "string"
    },
    "queryId": {
      "type": "number",
      "default": ""
    },
    "query": {
      "type": "object",
      "default": {
        "perPage": null,
        "pages": 0,
        "offset": 0,
        "postType": "post",
        "order": "desc",
        "orderBy": "date",
        "author": "",
        "search": "",
        "exclude": [],
        "sticky": true,
        "inherit": false,
        "taxQuery": null,
        "parents": [],
        "format": []
      }
    },
    "tagName": {
      "type": "string",
      "default": "div"
    },
    "namespace": {
      "type": "string"
    },
    "enhancedPagination": {
      "type": "boolean",
      "default": false
    }
  },
  "usesContext": [
    "postType"
  ],
  "providesContext": {
    "queryId": "queryId",
    "query": "query",
    "displayLayout": "displayLayout",
    "enhancedPagination": "enhancedPagination"
  },
  "supports": {
    "align": [
      "wide",
      "full"
    ],
    "html": false,
    "layout": false,
    "interactivity": true
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}