@n8n-as-code/skills 1.8.0 → 1.8.2-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-04-09T13:50:19.318Z",
2
+ "generatedAt": "2026-04-10T19:37:21.761Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
5
  "totalPages": 1262,
@@ -43619,34 +43619,35 @@
43619
43619
  },
43620
43620
  {
43621
43621
  "id": "page-0556",
43622
- "title": "Weaviate Vector Store",
43623
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43624
- "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43622
+ "title": "Supabase Vector Store",
43623
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43624
+ "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43625
43625
  "category": "cluster-nodes",
43626
43626
  "subcategory": null,
43627
43627
  "nodeName": null,
43628
43628
  "nodeType": null,
43629
43629
  "content": {
43630
- "markdown": "# Weaviate Vector Store node\n\nUse the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## Node usage patterns\n\nYou can use the Weaviate Vector Store node in the following patterns.\n\n### Use as a regular node to insert and retrieve documents\n\nYou can use the Weaviate Vector Store as a regular node to insert or get documents. This pattern places the Weaviate Vector Store in the regular connection flow without using an agent.\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Weaviate Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Weaviate Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Weaviate Vector Store node to fetch documents from the Weaviate Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Weaviate Vector Store node. Rather than connecting the Weaviate Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## Node parameters\n\nMultitenancy\n\nYou can separate your data into isolated tenants for the same collection (for example, for different customers). For that, you must always provide a [Tenant Name](#tenant-name) both when inserting and retrieving objects. [Read more about multi tenancy in Weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### Operation Mode\n\nThis Vector Store node has four modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, and **Retrieve Documents (As Tool for AI Agent)**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt is embedded and used for similarity search. The node returns the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse insert documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (as Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (as Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### Get Many parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Embedding Batch Size**: The number of documents to embed in a single batch. The default is 200 documents.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Weaviate Collection**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Include Metadata\n\nWhether to include document metadata.\n\nYou can use this with the [Get Many](#get-many) and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n## Node options\n\n### Search Filters\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nWhen searching for data, use this to match metadata associated with documents. You can learn more about the operators and query structure in [Weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nYou can use both `AND` and `OR` with different operators. Operators are case insensitive:\n\n```\n{\n \"OR\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n }\n ]\n}\n```\n\nSupported operators:\n\n| Operator | Required Field(s) | Description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valueString` or `valueNumber` | Checks if the property is equal to the given string or number. |\n| `'like'` | `valueString` | Checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsAny'` | `valueTextArray` (string[]) | Checks if the property contains **any** of the given values. |\n| `'containsAll'` | `valueTextArray` (string[]) | Checks if the property contains **all** of the given values. |\n| `'greaterThan'` | `valueNumber` | Checks if the property value is greater than the given number. |\n| `'lessThan'` | `valueNumber` | Checks if the property value is less than the given number. |\n| `'isNull'` | `valueBoolean` (true/false) | Checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withinGeoRange'` | `valueGeoCoordinates` (object with geolocation data) | Filters by proximity to geographic coordinates. |\n\nWhen inserting data, the document loader sets the metadata. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n### Metadata Keys\n\nYou can define which metadata keys you want Weaviate to return on your queries. This can reduce network load, as you will only get properties you have defined. Returns all properties from the server by default.\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\n### Hybrid: Query Text\n\nProvide a query text to combine vector search with a keyword/text search.\n\n### Hybrid: Explain Score\n\nWhether to show the score fused between hybrid and vector search explanation.\n\n### Hybrid: Fusion Type\n\nSelect the fusion type for combining vector and keyword search results. [Learn more about fusion algorithms](https://weaviate.io/learn/knowledgecards/fusion-algorithm).\n\nOptions:\n\n- **Relative Score**: Uses relative score fusion\n- **Ranked**: Uses ranked fusion\n\n### Hybrid: Auto Cut Limit\n\nLimit result groups by detecting sudden jumps in score. [Learn more about autocut](https://docs.weaviate.io/weaviate/api/graphql/additional-operators#autocut).\n\n### Hybrid: Alpha\n\nChange the relative weights of the keyword and vector components. 1.0 = pure vector, 0.0 = pure keyword. Default is 0.5. [Learn more about the alpha parameter](https://weaviate.io/learn/knowledgecards/alpha-parameter).\n\n### Hybrid: Query Properties\n\nComma-separated list of properties to include in the query with optionally weighted values, e.g., \"question^2,answer\". [Learn more about setting weights on property values](https://docs.weaviate.io/weaviate/search/hybrid#set-weights-on-property-values).\n\n### Hybrid: Max Vector Distance\n\nSet the maximum allowable distance for the vector search component.\n\n### Tenant Name\n\nThe specific tenant to store or retrieve documents for. [Learn more about multi-tenancy](https://weaviate.io/learn/knowledgecards/multi-tenancy).\n\nMust enable at creation\n\nYou must pass a tenant name at first ingestion to enable multitenancy for a collection. You can't enable or disable multitenancy after creation.\n\n### Text Key\n\nThe key in the document that contains the embedded text.\n\n### Skip Init Checks\n\nWhether to [skip initialization checks](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#initial-connection-checks) when instantiating the client.\n\n### Init Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during initial checks.\n\n### Insert Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during inserts.\n\n### Query Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during queries.\n\n### GRPC Proxy\n\nA proxy to use for gRPC requests.\n\n### Clear Data\n\nAvailable for the [Insert Documents](#insert-documents) operation mode.\n\nWhether to clear the collection or tenant before inserting new data.\n\n## Templates and examples\n\n**Build a Weekly AI Trend Alerter with arXiv and Weaviate**\n\nby Mary Newhauser\n\n[View template details](https://n8n.io/workflows/5817-build-a-weekly-ai-trend-alerter-with-arxiv-and-weaviate/)\n\n**Build person OSINT profiles using Humantic AI, Hunter, CourtListener and GPT-5**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12507-build-person-osint-profiles-using-humantic-ai-hunter-courtlistener-and-gpt-5/)\n\n**Research organizations with GPT‑5, Gemini, CourtListener, LegiScan and OSINT web sources**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12506-research-organizations-with-gpt5-gemini-courtlistener-legiscan-and-osint-web-sources/)\n\n[Browse Weaviate Vector Store integration templates](https://n8n.io/integrations/weaviate-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Weaviate documentation](https://js.langchain.com/docs/integrations/vectorstores/weaviate/) for more information about the service.\n\nRefer to [Weaviate Installation](https://docs.weaviate.io/deploy) for a self hosted Weaviate Cluster.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43631
- "excerpt": "# Weaviate Vector Store node Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page,...",
43630
+ "markdown": "# Supabase Vector Store node\n\nUse the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nSupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). If you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. Make sure you understand what you're doing.\n\n## Node usage patterns\n\nYou can use the Supabase Vector Store node in the following patterns.\n\n### Use as a regular node to insert, update, and retrieve documents\n\nYou can use the Supabase Vector Store as a regular node to insert, update, or get documents. This pattern places the Supabase Vector Store in the regular connection flow without using an agent.\n\nYou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Supabase Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Supabase Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Supabase Vector Store node to fetch documents from the Supabase Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nAn [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses Pinecone, but the pattern in the same) would be: Question and Answer Chain (Retriever connector) -> Vector Store Retriever (Vector Store connector) -> Supabase Vector Store.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Supabase Vector Store node. Rather than connecting the Supabase Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nThe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: AI agent (tools connector) -> Vector Store Question Answer Tool (Vector Store connector) -> Supabase Vector store.\n\n## Node parameters\n\n### Operation Mode\n\nThis Vector Store node has five modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, **Retrieve Documents (As Tool for AI Agent)**, and **Update Documents**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt will be embedded and used for similarity search. The node will return the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse Insert Documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (As Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (As Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### Update Documents\n\nUse Update Documents mode to update documents in a vector database by ID. Fill in the **ID** with the ID of the embedding entry to update.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n### Get Many parameters\n\n- **Table Name**: Enter the Supabase table to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Name**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Table Name**: Enter the Supabase table to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Update Documents\n\n- **Table Name**: Enter the Supabase table to use.\n- **ID**: The ID of an embedding entry.\n\nParameters for **Update Documents**\n\n- ID\n\n## Node options\n\n### Query Name\n\nThe name of the matching function you set up in Supabase. If you follow the [Supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### Metadata Filter\n\nAvailable in **Get Many** mode. When searching for data, use this to match with metadata associated with the document.\n\nThis is an `AND` query. If you specify more than one metadata filter field, all of them must match.\n\nWhen inserting data, the metadata is set using the document loader. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## Templates and examples\n\n**AI Agent To Chat With Files In Supabase Storage**\n\nby Mark Shcherbakov\n\n[View template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**Automate sales cold calling pipeline with Apify, GPT-4o, and WhatsApp**\n\nby Khairul Muhtadin\n\n[View template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 Create a Documentation Expert Bot with RAG, Gemini, and Supabase**\n\nby Lucas Peyrin\n\n[View template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[Browse Supabase Vector Store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43631
+ "excerpt": "# Supabase Vector Store node Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain. Use the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector databa...",
43632
43632
  "sections": [
43633
43633
  {
43634
- "title": "Weaviate Vector Store node",
43634
+ "title": "Supabase Vector Store node",
43635
43635
  "level": 1,
43636
- "content": "Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for "
43636
+ "content": "Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in su"
43637
43637
  }
43638
43638
  ]
43639
43639
  },
43640
43640
  "metadata": {
43641
43641
  "keywords": [
43642
- "weaviate",
43642
+ "supabase",
43643
43643
  "vector",
43644
43644
  "store",
43645
43645
  "node",
43646
43646
  "usage",
43647
43647
  "patterns",
43648
43648
  "regular",
43649
- "insert",
43649
+ "insert,",
43650
+ "update,",
43650
43651
  "retrieve",
43651
43652
  "documents",
43652
43653
  "connect",
@@ -43662,38 +43663,17 @@
43662
43663
  "operation",
43663
43664
  "mode",
43664
43665
  "many",
43666
+ "insert",
43665
43667
  "chain/tool)",
43666
43668
  "agent)",
43667
- "include",
43668
- "metadata",
43669
+ "update",
43669
43670
  "rerank",
43670
43671
  "results",
43671
43672
  "options",
43672
- "search",
43673
- "filters",
43674
- "keys",
43675
- "hybrid:",
43676
43673
  "query",
43677
- "text",
43678
- "explain",
43679
- "score",
43680
- "fusion",
43681
- "type",
43682
- "auto",
43683
- "limit",
43684
- "alpha",
43685
- "properties",
43686
- "distance",
43687
- "tenant",
43688
43674
  "name",
43689
- "skip",
43690
- "init",
43691
- "checks",
43692
- "timeout",
43693
- "grpc",
43694
- "proxy",
43695
- "clear",
43696
- "data",
43675
+ "metadata",
43676
+ "filter",
43697
43677
  "templates",
43698
43678
  "examples",
43699
43679
  "related",
@@ -43703,99 +43683,98 @@
43703
43683
  "operations": [
43704
43684
  "mode"
43705
43685
  ],
43706
- "codeExamples": 1,
43686
+ "codeExamples": 0,
43707
43687
  "complexity": "intermediate",
43708
- "readingTime": "9 min",
43709
- "contentLength": 14378,
43688
+ "readingTime": "7 min",
43689
+ "contentLength": 8921,
43710
43690
  "relatedPages": []
43711
43691
  },
43712
43692
  "searchIndex": {
43713
- "fullText": "weaviate vector store # weaviate vector store node\n\nuse the weaviate node to interact with your weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into or retrieve documents from a vector database. you can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). on this page, you'll find the node parameters for the weaviate node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## node usage patterns\n\nyou can use the weaviate vector store node in the following patterns.\n\n### use as a regular node to insert and retrieve documents\n\nyou can use the weaviate vector store as a regular node to insert or get documents. this pattern places the weaviate vector store in the regular connection flow without using an agent.\n\n### connect directly to an ai agent as a tool\n\nyou can connect the weaviate vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> weaviate vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the weaviate vector store node to fetch documents from the weaviate vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the weaviate vector store node. rather than connecting the weaviate vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## node parameters\n\nmultitenancy\n\nyou can separate your data into isolated tenants for the same collection (for example, for different customers). for that, you must always provide a [tenant name](#tenant-name) both when inserting and retrieving objects. [read more about multi tenancy in weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### operation mode\n\nthis vector store node has four modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, and **retrieve documents (as tool for ai agent)**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt is embedded and used for similarity search. the node returns the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### get many parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **embedding batch size**: the number of documents to embed in a single batch. the default is 200 documents.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **weaviate collection**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### include metadata\n\nwhether to include document metadata.\n\nyou can use this with the [get many](#get-many) and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n## node options\n\n### search filters\n\navailable for the [get many](#get-many), [retrieve documents (as vector store for chain/tool)](#retrieve-documents-as-vector-store-for-chaintool), and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nwhen searching for data, use this to match metadata associated with documents. you can learn more about the operators and query structure in [weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nyou can use both `and` and `or` with different operators. operators are case insensitive:\n\n```\n{\n \"or\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n }\n ]\n}\n```\n\nsupported operators:\n\n| operator | required field(s) | description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valuestring` or `valuenumber` | checks if the property is equal to the given string or number. |\n| `'like'` | `valuestring` | checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsany'` | `valuetextarray` (string[]) | checks if the property contains **any** of the given values. |\n| `'containsall'` | `valuetextarray` (string[]) | checks if the property contains **all** of the given values. |\n| `'greaterthan'` | `valuenumber` | checks if the property value is greater than the given number. |\n| `'lessthan'` | `valuenumber` | checks if the property value is less than the given number. |\n| `'isnull'` | `valueboolean` (true/false) | checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withingeorange'` | `valuegeocoordinates` (object with geolocation data) | filters by proximity to geographic coordinates. |\n\nwhen inserting data, the document loader sets the metadata. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information ",
43693
+ "fullText": "supabase vector store # supabase vector store node\n\nuse the supabase vector store to interact with your supabase database as vector store. you can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nuse the supabase vector store to interact with your supabase database as [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). you can also update an item in a vector store by its id.\n\non this page, you'll find the node parameters for the supabase node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/supabase/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nsupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). if you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. make sure you understand what you're doing.\n\n## node usage patterns\n\nyou can use the supabase vector store node in the following patterns.\n\n### use as a regular node to insert, update, and retrieve documents\n\nyou can use the supabase vector store as a regular node to insert, update, or get documents. this pattern places the supabase vector store in the regular connection flow without using an agent.\n\nyou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### connect directly to an ai agent as a tool\n\nyou can connect the supabase vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> supabase vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the supabase vector store node to fetch documents from the supabase vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nan [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses pinecone, but the pattern in the same) would be: question and answer chain (retriever connector) -> vector store retriever (vector store connector) -> supabase vector store.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the supabase vector store node. rather than connecting the supabase vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nthe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: ai agent (tools connector) -> vector store question answer tool (vector store connector) -> supabase vector store.\n\n## node parameters\n\n### operation mode\n\nthis vector store node has five modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, **retrieve documents (as tool for ai agent)**, and **update documents**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt will be embedded and used for similarity search. the node will return the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### update documents\n\nuse update documents mode to update documents in a vector database by id. fill in the **id** with the id of the embedding entry to update.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n### get many parameters\n\n- **table name**: enter the supabase table to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **name**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **table name**: enter the supabase table to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### update documents\n\n- **table name**: enter the supabase table to use.\n- **id**: the id of an embedding entry.\n\nparameters for **update documents**\n\n- id\n\n## node options\n\n### query name\n\nthe name of the matching function you set up in supabase. if you follow the [supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### metadata filter\n\navailable in **get many** mode. when searching for data, use this to match with metadata associated with the document.\n\nthis is an `and` query. if you specify more than one metadata filter field, all of them must match.\n\nwhen inserting data, the metadata is set using the document loader. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## templates and examples\n\n**ai agent to chat with files in supabase storage**\n\nby mark shcherbakov\n\n[view template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**automate sales cold calling pipeline with apify, gpt-4o, and whatsapp**\n\nby khairul muhtadin\n\n[view template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 create a documentation expert bot with rag, gemini, and supabase**\n\nby lucas peyrin\n\n[view template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[browse supabase vector store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n supabase vector store node",
43714
43694
  "importantTerms": [
43715
- "weaviate",
43716
43695
  "vector",
43717
- "documents",
43718
43696
  "store",
43697
+ "supabase",
43698
+ "documents",
43719
43699
  "node",
43720
- "retrieve",
43721
- "tool",
43722
- "agent",
43723
- "https",
43724
43700
  "this",
43701
+ "tool",
43725
43702
  "with",
43703
+ "agent",
43704
+ "retrieve",
43726
43705
  "name",
43727
- "collection",
43728
43706
  "nodes",
43729
- "docs",
43730
- "many",
43731
- "insert",
43707
+ "database",
43732
43708
  "chain",
43733
- "more",
43734
- "checks",
43735
- "results",
43736
- "values",
43737
- "search",
43709
+ "https",
43710
+ "update",
43711
+ "table",
43712
+ "insert",
43738
43713
  "from",
43739
- "when",
43740
- "learn",
43741
- "property",
43742
- "hybrid",
43743
- "parameters",
43744
- "number",
43745
- "given",
43746
- "data",
43747
- "about",
43748
- "mode",
43714
+ "retriever",
43715
+ "results",
43749
43716
  "langchain",
43717
+ "mode",
43718
+ "many",
43750
43719
  "enter",
43751
- "query",
43752
- "retriever",
43720
+ "parameters",
43721
+ "when",
43753
43722
  "example",
43723
+ "workflows",
43754
43724
  "answer",
43755
- "must",
43756
- "tenant",
43757
- "score",
43758
- "best",
43759
- "metadata",
43760
- "fusion",
43761
- "timeout",
43725
+ "connector",
43726
+ "question",
43762
43727
  "your",
43728
+ "them",
43763
43729
  "glossary",
43764
- "connect"
43730
+ "connect",
43731
+ "more",
43732
+ "expression",
43733
+ "input",
43734
+ "chat",
43735
+ "directly",
43736
+ "items",
43737
+ "using",
43738
+ "resolves",
43739
+ "pattern",
43740
+ "template",
43741
+ "files",
43742
+ "storage",
43743
+ "match",
43744
+ "uses"
43765
43745
  ]
43766
43746
  }
43767
43747
  },
43768
43748
  {
43769
43749
  "id": "page-0557",
43770
- "title": "Supabase Vector Store",
43771
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43772
- "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43750
+ "title": "Weaviate Vector Store",
43751
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43752
+ "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43773
43753
  "category": "cluster-nodes",
43774
43754
  "subcategory": null,
43775
43755
  "nodeName": null,
43776
43756
  "nodeType": null,
43777
43757
  "content": {
43778
- "markdown": "# Supabase Vector Store node\n\nUse the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nSupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). If you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. Make sure you understand what you're doing.\n\n## Node usage patterns\n\nYou can use the Supabase Vector Store node in the following patterns.\n\n### Use as a regular node to insert, update, and retrieve documents\n\nYou can use the Supabase Vector Store as a regular node to insert, update, or get documents. This pattern places the Supabase Vector Store in the regular connection flow without using an agent.\n\nYou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Supabase Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Supabase Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Supabase Vector Store node to fetch documents from the Supabase Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nAn [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses Pinecone, but the pattern in the same) would be: Question and Answer Chain (Retriever connector) -> Vector Store Retriever (Vector Store connector) -> Supabase Vector Store.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Supabase Vector Store node. Rather than connecting the Supabase Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nThe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: AI agent (tools connector) -> Vector Store Question Answer Tool (Vector Store connector) -> Supabase Vector store.\n\n## Node parameters\n\n### Operation Mode\n\nThis Vector Store node has five modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, **Retrieve Documents (As Tool for AI Agent)**, and **Update Documents**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt will be embedded and used for similarity search. The node will return the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse Insert Documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (As Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (As Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### Update Documents\n\nUse Update Documents mode to update documents in a vector database by ID. Fill in the **ID** with the ID of the embedding entry to update.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n### Get Many parameters\n\n- **Table Name**: Enter the Supabase table to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Name**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Table Name**: Enter the Supabase table to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Update Documents\n\n- **Table Name**: Enter the Supabase table to use.\n- **ID**: The ID of an embedding entry.\n\nParameters for **Update Documents**\n\n- ID\n\n## Node options\n\n### Query Name\n\nThe name of the matching function you set up in Supabase. If you follow the [Supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### Metadata Filter\n\nAvailable in **Get Many** mode. When searching for data, use this to match with metadata associated with the document.\n\nThis is an `AND` query. If you specify more than one metadata filter field, all of them must match.\n\nWhen inserting data, the metadata is set using the document loader. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## Templates and examples\n\n**AI Agent To Chat With Files In Supabase Storage**\n\nby Mark Shcherbakov\n\n[View template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**Automate sales cold calling pipeline with Apify, GPT-4o, and WhatsApp**\n\nby Khairul Muhtadin\n\n[View template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 Create a Documentation Expert Bot with RAG, Gemini, and Supabase**\n\nby Lucas Peyrin\n\n[View template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[Browse Supabase Vector Store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43779
- "excerpt": "# Supabase Vector Store node Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain. Use the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector databa...",
43758
+ "markdown": "# Weaviate Vector Store node\n\nUse the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## Node usage patterns\n\nYou can use the Weaviate Vector Store node in the following patterns.\n\n### Use as a regular node to insert and retrieve documents\n\nYou can use the Weaviate Vector Store as a regular node to insert or get documents. This pattern places the Weaviate Vector Store in the regular connection flow without using an agent.\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Weaviate Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Weaviate Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Weaviate Vector Store node to fetch documents from the Weaviate Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Weaviate Vector Store node. Rather than connecting the Weaviate Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## Node parameters\n\nMultitenancy\n\nYou can separate your data into isolated tenants for the same collection (for example, for different customers). For that, you must always provide a [Tenant Name](#tenant-name) both when inserting and retrieving objects. [Read more about multi tenancy in Weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### Operation Mode\n\nThis Vector Store node has four modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, and **Retrieve Documents (As Tool for AI Agent)**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt is embedded and used for similarity search. The node returns the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse insert documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (as Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (as Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### Get Many parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Embedding Batch Size**: The number of documents to embed in a single batch. The default is 200 documents.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Weaviate Collection**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Include Metadata\n\nWhether to include document metadata.\n\nYou can use this with the [Get Many](#get-many) and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n## Node options\n\n### Search Filters\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nWhen searching for data, use this to match metadata associated with documents. You can learn more about the operators and query structure in [Weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nYou can use both `AND` and `OR` with different operators. Operators are case insensitive:\n\n```\n{\n \"OR\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n }\n ]\n}\n```\n\nSupported operators:\n\n| Operator | Required Field(s) | Description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valueString` or `valueNumber` | Checks if the property is equal to the given string or number. |\n| `'like'` | `valueString` | Checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsAny'` | `valueTextArray` (string[]) | Checks if the property contains **any** of the given values. |\n| `'containsAll'` | `valueTextArray` (string[]) | Checks if the property contains **all** of the given values. |\n| `'greaterThan'` | `valueNumber` | Checks if the property value is greater than the given number. |\n| `'lessThan'` | `valueNumber` | Checks if the property value is less than the given number. |\n| `'isNull'` | `valueBoolean` (true/false) | Checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withinGeoRange'` | `valueGeoCoordinates` (object with geolocation data) | Filters by proximity to geographic coordinates. |\n\nWhen inserting data, the document loader sets the metadata. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n### Metadata Keys\n\nYou can define which metadata keys you want Weaviate to return on your queries. This can reduce network load, as you will only get properties you have defined. Returns all properties from the server by default.\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\n### Hybrid: Query Text\n\nProvide a query text to combine vector search with a keyword/text search.\n\n### Hybrid: Explain Score\n\nWhether to show the score fused between hybrid and vector search explanation.\n\n### Hybrid: Fusion Type\n\nSelect the fusion type for combining vector and keyword search results. [Learn more about fusion algorithms](https://weaviate.io/learn/knowledgecards/fusion-algorithm).\n\nOptions:\n\n- **Relative Score**: Uses relative score fusion\n- **Ranked**: Uses ranked fusion\n\n### Hybrid: Auto Cut Limit\n\nLimit result groups by detecting sudden jumps in score. [Learn more about autocut](https://docs.weaviate.io/weaviate/api/graphql/additional-operators#autocut).\n\n### Hybrid: Alpha\n\nChange the relative weights of the keyword and vector components. 1.0 = pure vector, 0.0 = pure keyword. Default is 0.5. [Learn more about the alpha parameter](https://weaviate.io/learn/knowledgecards/alpha-parameter).\n\n### Hybrid: Query Properties\n\nComma-separated list of properties to include in the query with optionally weighted values, e.g., \"question^2,answer\". [Learn more about setting weights on property values](https://docs.weaviate.io/weaviate/search/hybrid#set-weights-on-property-values).\n\n### Hybrid: Max Vector Distance\n\nSet the maximum allowable distance for the vector search component.\n\n### Tenant Name\n\nThe specific tenant to store or retrieve documents for. [Learn more about multi-tenancy](https://weaviate.io/learn/knowledgecards/multi-tenancy).\n\nMust enable at creation\n\nYou must pass a tenant name at first ingestion to enable multitenancy for a collection. You can't enable or disable multitenancy after creation.\n\n### Text Key\n\nThe key in the document that contains the embedded text.\n\n### Skip Init Checks\n\nWhether to [skip initialization checks](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#initial-connection-checks) when instantiating the client.\n\n### Init Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during initial checks.\n\n### Insert Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during inserts.\n\n### Query Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during queries.\n\n### GRPC Proxy\n\nA proxy to use for gRPC requests.\n\n### Clear Data\n\nAvailable for the [Insert Documents](#insert-documents) operation mode.\n\nWhether to clear the collection or tenant before inserting new data.\n\n## Templates and examples\n\n**Build a Weekly AI Trend Alerter with arXiv and Weaviate**\n\nby Mary Newhauser\n\n[View template details](https://n8n.io/workflows/5817-build-a-weekly-ai-trend-alerter-with-arxiv-and-weaviate/)\n\n**Build person OSINT profiles using Humantic AI, Hunter, CourtListener and GPT-5**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12507-build-person-osint-profiles-using-humantic-ai-hunter-courtlistener-and-gpt-5/)\n\n**Research organizations with GPT‑5, Gemini, CourtListener, LegiScan and OSINT web sources**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12506-research-organizations-with-gpt5-gemini-courtlistener-legiscan-and-osint-web-sources/)\n\n[Browse Weaviate Vector Store integration templates](https://n8n.io/integrations/weaviate-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Weaviate documentation](https://js.langchain.com/docs/integrations/vectorstores/weaviate/) for more information about the service.\n\nRefer to [Weaviate Installation](https://docs.weaviate.io/deploy) for a self hosted Weaviate Cluster.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43759
+ "excerpt": "# Weaviate Vector Store node Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page,...",
43780
43760
  "sections": [
43781
43761
  {
43782
- "title": "Supabase Vector Store node",
43762
+ "title": "Weaviate Vector Store node",
43783
43763
  "level": 1,
43784
- "content": "Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in su"
43764
+ "content": "Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for "
43785
43765
  }
43786
43766
  ]
43787
43767
  },
43788
43768
  "metadata": {
43789
43769
  "keywords": [
43790
- "supabase",
43770
+ "weaviate",
43791
43771
  "vector",
43792
43772
  "store",
43793
43773
  "node",
43794
43774
  "usage",
43795
43775
  "patterns",
43796
43776
  "regular",
43797
- "insert,",
43798
- "update,",
43777
+ "insert",
43799
43778
  "retrieve",
43800
43779
  "documents",
43801
43780
  "connect",
@@ -43811,17 +43790,38 @@
43811
43790
  "operation",
43812
43791
  "mode",
43813
43792
  "many",
43814
- "insert",
43815
43793
  "chain/tool)",
43816
43794
  "agent)",
43817
- "update",
43795
+ "include",
43796
+ "metadata",
43818
43797
  "rerank",
43819
43798
  "results",
43820
43799
  "options",
43800
+ "search",
43801
+ "filters",
43802
+ "keys",
43803
+ "hybrid:",
43821
43804
  "query",
43805
+ "text",
43806
+ "explain",
43807
+ "score",
43808
+ "fusion",
43809
+ "type",
43810
+ "auto",
43811
+ "limit",
43812
+ "alpha",
43813
+ "properties",
43814
+ "distance",
43815
+ "tenant",
43822
43816
  "name",
43823
- "metadata",
43824
- "filter",
43817
+ "skip",
43818
+ "init",
43819
+ "checks",
43820
+ "timeout",
43821
+ "grpc",
43822
+ "proxy",
43823
+ "clear",
43824
+ "data",
43825
43825
  "templates",
43826
43826
  "examples",
43827
43827
  "related",
@@ -43831,65 +43831,65 @@
43831
43831
  "operations": [
43832
43832
  "mode"
43833
43833
  ],
43834
- "codeExamples": 0,
43834
+ "codeExamples": 1,
43835
43835
  "complexity": "intermediate",
43836
- "readingTime": "7 min",
43837
- "contentLength": 8921,
43836
+ "readingTime": "9 min",
43837
+ "contentLength": 14378,
43838
43838
  "relatedPages": []
43839
43839
  },
43840
43840
  "searchIndex": {
43841
- "fullText": "supabase vector store # supabase vector store node\n\nuse the supabase vector store to interact with your supabase database as vector store. you can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nuse the supabase vector store to interact with your supabase database as [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). you can also update an item in a vector store by its id.\n\non this page, you'll find the node parameters for the supabase node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/supabase/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nsupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). if you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. make sure you understand what you're doing.\n\n## node usage patterns\n\nyou can use the supabase vector store node in the following patterns.\n\n### use as a regular node to insert, update, and retrieve documents\n\nyou can use the supabase vector store as a regular node to insert, update, or get documents. this pattern places the supabase vector store in the regular connection flow without using an agent.\n\nyou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### connect directly to an ai agent as a tool\n\nyou can connect the supabase vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> supabase vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the supabase vector store node to fetch documents from the supabase vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nan [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses pinecone, but the pattern in the same) would be: question and answer chain (retriever connector) -> vector store retriever (vector store connector) -> supabase vector store.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the supabase vector store node. rather than connecting the supabase vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nthe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: ai agent (tools connector) -> vector store question answer tool (vector store connector) -> supabase vector store.\n\n## node parameters\n\n### operation mode\n\nthis vector store node has five modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, **retrieve documents (as tool for ai agent)**, and **update documents**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt will be embedded and used for similarity search. the node will return the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### update documents\n\nuse update documents mode to update documents in a vector database by id. fill in the **id** with the id of the embedding entry to update.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n### get many parameters\n\n- **table name**: enter the supabase table to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **name**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **table name**: enter the supabase table to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### update documents\n\n- **table name**: enter the supabase table to use.\n- **id**: the id of an embedding entry.\n\nparameters for **update documents**\n\n- id\n\n## node options\n\n### query name\n\nthe name of the matching function you set up in supabase. if you follow the [supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### metadata filter\n\navailable in **get many** mode. when searching for data, use this to match with metadata associated with the document.\n\nthis is an `and` query. if you specify more than one metadata filter field, all of them must match.\n\nwhen inserting data, the metadata is set using the document loader. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## templates and examples\n\n**ai agent to chat with files in supabase storage**\n\nby mark shcherbakov\n\n[view template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**automate sales cold calling pipeline with apify, gpt-4o, and whatsapp**\n\nby khairul muhtadin\n\n[view template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 create a documentation expert bot with rag, gemini, and supabase**\n\nby lucas peyrin\n\n[view template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[browse supabase vector store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n supabase vector store node",
43841
+ "fullText": "weaviate vector store # weaviate vector store node\n\nuse the weaviate node to interact with your weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into or retrieve documents from a vector database. you can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). on this page, you'll find the node parameters for the weaviate node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## node usage patterns\n\nyou can use the weaviate vector store node in the following patterns.\n\n### use as a regular node to insert and retrieve documents\n\nyou can use the weaviate vector store as a regular node to insert or get documents. this pattern places the weaviate vector store in the regular connection flow without using an agent.\n\n### connect directly to an ai agent as a tool\n\nyou can connect the weaviate vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> weaviate vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the weaviate vector store node to fetch documents from the weaviate vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the weaviate vector store node. rather than connecting the weaviate vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## node parameters\n\nmultitenancy\n\nyou can separate your data into isolated tenants for the same collection (for example, for different customers). for that, you must always provide a [tenant name](#tenant-name) both when inserting and retrieving objects. [read more about multi tenancy in weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### operation mode\n\nthis vector store node has four modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, and **retrieve documents (as tool for ai agent)**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt is embedded and used for similarity search. the node returns the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### get many parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **embedding batch size**: the number of documents to embed in a single batch. the default is 200 documents.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **weaviate collection**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### include metadata\n\nwhether to include document metadata.\n\nyou can use this with the [get many](#get-many) and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n## node options\n\n### search filters\n\navailable for the [get many](#get-many), [retrieve documents (as vector store for chain/tool)](#retrieve-documents-as-vector-store-for-chaintool), and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nwhen searching for data, use this to match metadata associated with documents. you can learn more about the operators and query structure in [weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nyou can use both `and` and `or` with different operators. operators are case insensitive:\n\n```\n{\n \"or\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n }\n ]\n}\n```\n\nsupported operators:\n\n| operator | required field(s) | description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valuestring` or `valuenumber` | checks if the property is equal to the given string or number. |\n| `'like'` | `valuestring` | checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsany'` | `valuetextarray` (string[]) | checks if the property contains **any** of the given values. |\n| `'containsall'` | `valuetextarray` (string[]) | checks if the property contains **all** of the given values. |\n| `'greaterthan'` | `valuenumber` | checks if the property value is greater than the given number. |\n| `'lessthan'` | `valuenumber` | checks if the property value is less than the given number. |\n| `'isnull'` | `valueboolean` (true/false) | checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withingeorange'` | `valuegeocoordinates` (object with geolocation data) | filters by proximity to geographic coordinates. |\n\nwhen inserting data, the document loader sets the metadata. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information ",
43842
43842
  "importantTerms": [
43843
+ "weaviate",
43843
43844
  "vector",
43844
- "store",
43845
- "supabase",
43846
43845
  "documents",
43846
+ "store",
43847
43847
  "node",
43848
- "this",
43848
+ "retrieve",
43849
43849
  "tool",
43850
- "with",
43851
43850
  "agent",
43852
- "retrieve",
43851
+ "https",
43852
+ "this",
43853
+ "with",
43853
43854
  "name",
43855
+ "collection",
43854
43856
  "nodes",
43855
- "database",
43856
- "chain",
43857
- "https",
43858
- "update",
43859
- "table",
43857
+ "docs",
43858
+ "many",
43860
43859
  "insert",
43861
- "from",
43862
- "retriever",
43860
+ "chain",
43861
+ "more",
43862
+ "checks",
43863
43863
  "results",
43864
- "langchain",
43864
+ "values",
43865
+ "search",
43866
+ "from",
43867
+ "when",
43868
+ "learn",
43869
+ "property",
43870
+ "hybrid",
43871
+ "parameters",
43872
+ "number",
43873
+ "given",
43874
+ "data",
43875
+ "about",
43865
43876
  "mode",
43866
- "many",
43877
+ "langchain",
43867
43878
  "enter",
43868
- "parameters",
43869
- "when",
43879
+ "query",
43880
+ "retriever",
43870
43881
  "example",
43871
- "workflows",
43872
43882
  "answer",
43873
- "connector",
43874
- "question",
43883
+ "must",
43884
+ "tenant",
43885
+ "score",
43886
+ "best",
43887
+ "metadata",
43888
+ "fusion",
43889
+ "timeout",
43875
43890
  "your",
43876
- "them",
43877
43891
  "glossary",
43878
- "connect",
43879
- "more",
43880
- "expression",
43881
- "input",
43882
- "chat",
43883
- "directly",
43884
- "items",
43885
- "using",
43886
- "resolves",
43887
- "pattern",
43888
- "template",
43889
- "files",
43890
- "storage",
43891
- "match",
43892
- "uses"
43892
+ "connect"
43893
43893
  ]
43894
43894
  }
43895
43895
  },
@@ -57277,63 +57277,6 @@
57277
57277
  },
57278
57278
  {
57279
57279
  "id": "page-0716",
57280
- "title": "Workflow development",
57281
- "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook/workflow-development/index.md",
57282
- "urlPath": "integrations/builtin/core-nodes/n8n-nodes-base.webhook/workflow-development/index.md",
57283
- "category": "other",
57284
- "subcategory": null,
57285
- "nodeName": "webhook",
57286
- "nodeType": "n8n-nodes-base.webhook",
57287
- "content": {
57288
- "markdown": "# Workflow development\n\nThe [Webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your Webhook node in production.\n\nn8n generates two **Webhook URLs** for each Webhook node: a **Test URL** and a **Production URL**.\n\n## Build and test workflows\n\nWhile building or testing a workflow, use the **Test** webhook URL.\n\nUsing a test webhook ensures that you can view the incoming data in the editor UI, which is useful for debugging. Select **Listen for test event** to register the webhook before sending the data to the test webhook. The test webhook stays active for 120 seconds.\n\nWhen using the Webhook node on localhost on a [self-hosted](../../../../../hosting/) n8n instance, run n8n in tunnel mode:\n\n- [npm with tunnel](../../../../../hosting/installation/npm/#n8n-with-tunnel)\n- [Docker with tunnel](../../../../../hosting/installation/docker/#n8n-with-tunnel)\n\n[](/_video/integrations/builtin/core-nodes/webhook/webhook-node-intro.mp4)\n\n## Production workflows\n\nWhen your workflow is ready, switch to using the **Production** webhook URL. You can then publish your workflow, and n8n runs it automatically when an external service calls the webhook URL.\n\nWhen working with a Production webhook, ensure that you have saved and published the workflow. Data flowing through the webhook isn't visible in the editor UI with the production webhook.\n\nRefer to [Create a workflow](../../../../../workflows/create/) for more information on publishing workflows.\n",
57289
- "excerpt": "# Workflow development The [Webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your Webhook node in production. n8n generates two **Webhook URLs** for each Webhook node: a **Test URL** and a **Production URL**. ## Build and test workflows While building or testing a workflow, use the **Test** webhook URL. Using a test webhook ensures that you can view the incoming data in the editor UI, which is useful...",
57290
- "sections": [
57291
- {
57292
- "title": "Workflow development",
57293
- "level": 1,
57294
- "content": "The [Webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your Webhook node in production.\n\nn8n generates two **Webhook URLs** for each Webhook node: a **Test URL** and a **Production URL**."
57295
- }
57296
- ]
57297
- },
57298
- "metadata": {
57299
- "keywords": [
57300
- "workflow",
57301
- "development",
57302
- "build",
57303
- "test",
57304
- "workflows",
57305
- "production"
57306
- ],
57307
- "useCases": [],
57308
- "operations": [],
57309
- "codeExamples": 0,
57310
- "complexity": "beginner",
57311
- "readingTime": "2 min",
57312
- "contentLength": 1543,
57313
- "relatedPages": []
57314
- },
57315
- "searchIndex": {
57316
- "fullText": "workflow development # workflow development\n\nthe [webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your webhook node in production.\n\nn8n generates two **webhook urls** for each webhook node: a **test url** and a **production url**.\n\n## build and test workflows\n\nwhile building or testing a workflow, use the **test** webhook url.\n\nusing a test webhook ensures that you can view the incoming data in the editor ui, which is useful for debugging. select **listen for test event** to register the webhook before sending the data to the test webhook. the test webhook stays active for 120 seconds.\n\nwhen using the webhook node on localhost on a [self-hosted](../../../../../hosting/) n8n instance, run n8n in tunnel mode:\n\n- [npm with tunnel](../../../../../hosting/installation/npm/#n8n-with-tunnel)\n- [docker with tunnel](../../../../../hosting/installation/docker/#n8n-with-tunnel)\n\n[](/_video/integrations/builtin/core-nodes/webhook/webhook-node-intro.mp4)\n\n## production workflows\n\nwhen your workflow is ready, switch to using the **production** webhook url. you can then publish your workflow, and n8n runs it automatically when an external service calls the webhook url.\n\nwhen working with a production webhook, ensure that you have saved and published the workflow. data flowing through the webhook isn't visible in the editor ui with the production webhook.\n\nrefer to [create a workflow](../../../../../workflows/create/) for more information on publishing workflows.\n workflow development",
57317
- "importantTerms": [
57318
- "webhook",
57319
- "workflow",
57320
- "test",
57321
- "production",
57322
- "with",
57323
- "node",
57324
- "tunnel",
57325
- "using",
57326
- "workflows",
57327
- "when",
57328
- "development",
57329
- "your",
57330
- "data",
57331
- "hosting"
57332
- ]
57333
- }
57334
- },
57335
- {
57336
- "id": "page-0717",
57337
57280
  "title": "Chat Trigger",
57338
57281
  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/index.md",
57339
57282
  "urlPath": "integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/index.md",
@@ -57458,6 +57401,63 @@
57458
57401
  ]
57459
57402
  }
57460
57403
  },
57404
+ {
57405
+ "id": "page-0717",
57406
+ "title": "Workflow development",
57407
+ "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook/workflow-development/index.md",
57408
+ "urlPath": "integrations/builtin/core-nodes/n8n-nodes-base.webhook/workflow-development/index.md",
57409
+ "category": "other",
57410
+ "subcategory": null,
57411
+ "nodeName": "webhook",
57412
+ "nodeType": "n8n-nodes-base.webhook",
57413
+ "content": {
57414
+ "markdown": "# Workflow development\n\nThe [Webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your Webhook node in production.\n\nn8n generates two **Webhook URLs** for each Webhook node: a **Test URL** and a **Production URL**.\n\n## Build and test workflows\n\nWhile building or testing a workflow, use the **Test** webhook URL.\n\nUsing a test webhook ensures that you can view the incoming data in the editor UI, which is useful for debugging. Select **Listen for test event** to register the webhook before sending the data to the test webhook. The test webhook stays active for 120 seconds.\n\nWhen using the Webhook node on localhost on a [self-hosted](../../../../../hosting/) n8n instance, run n8n in tunnel mode:\n\n- [npm with tunnel](../../../../../hosting/installation/npm/#n8n-with-tunnel)\n- [Docker with tunnel](../../../../../hosting/installation/docker/#n8n-with-tunnel)\n\n[](/_video/integrations/builtin/core-nodes/webhook/webhook-node-intro.mp4)\n\n## Production workflows\n\nWhen your workflow is ready, switch to using the **Production** webhook URL. You can then publish your workflow, and n8n runs it automatically when an external service calls the webhook URL.\n\nWhen working with a Production webhook, ensure that you have saved and published the workflow. Data flowing through the webhook isn't visible in the editor UI with the production webhook.\n\nRefer to [Create a workflow](../../../../../workflows/create/) for more information on publishing workflows.\n",
57415
+ "excerpt": "# Workflow development The [Webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your Webhook node in production. n8n generates two **Webhook URLs** for each Webhook node: a **Test URL** and a **Production URL**. ## Build and test workflows While building or testing a workflow, use the **Test** webhook URL. Using a test webhook ensures that you can view the incoming data in the editor UI, which is useful...",
57416
+ "sections": [
57417
+ {
57418
+ "title": "Workflow development",
57419
+ "level": 1,
57420
+ "content": "The [Webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your Webhook node in production.\n\nn8n generates two **Webhook URLs** for each Webhook node: a **Test URL** and a **Production URL**."
57421
+ }
57422
+ ]
57423
+ },
57424
+ "metadata": {
57425
+ "keywords": [
57426
+ "workflow",
57427
+ "development",
57428
+ "build",
57429
+ "test",
57430
+ "workflows",
57431
+ "production"
57432
+ ],
57433
+ "useCases": [],
57434
+ "operations": [],
57435
+ "codeExamples": 0,
57436
+ "complexity": "beginner",
57437
+ "readingTime": "2 min",
57438
+ "contentLength": 1543,
57439
+ "relatedPages": []
57440
+ },
57441
+ "searchIndex": {
57442
+ "fullText": "workflow development # workflow development\n\nthe [webhook node](../) works a bit differently from other core nodes. n8n recommends following these processes for building, testing, and using your webhook node in production.\n\nn8n generates two **webhook urls** for each webhook node: a **test url** and a **production url**.\n\n## build and test workflows\n\nwhile building or testing a workflow, use the **test** webhook url.\n\nusing a test webhook ensures that you can view the incoming data in the editor ui, which is useful for debugging. select **listen for test event** to register the webhook before sending the data to the test webhook. the test webhook stays active for 120 seconds.\n\nwhen using the webhook node on localhost on a [self-hosted](../../../../../hosting/) n8n instance, run n8n in tunnel mode:\n\n- [npm with tunnel](../../../../../hosting/installation/npm/#n8n-with-tunnel)\n- [docker with tunnel](../../../../../hosting/installation/docker/#n8n-with-tunnel)\n\n[](/_video/integrations/builtin/core-nodes/webhook/webhook-node-intro.mp4)\n\n## production workflows\n\nwhen your workflow is ready, switch to using the **production** webhook url. you can then publish your workflow, and n8n runs it automatically when an external service calls the webhook url.\n\nwhen working with a production webhook, ensure that you have saved and published the workflow. data flowing through the webhook isn't visible in the editor ui with the production webhook.\n\nrefer to [create a workflow](../../../../../workflows/create/) for more information on publishing workflows.\n workflow development",
57443
+ "importantTerms": [
57444
+ "webhook",
57445
+ "workflow",
57446
+ "test",
57447
+ "production",
57448
+ "with",
57449
+ "node",
57450
+ "tunnel",
57451
+ "using",
57452
+ "workflows",
57453
+ "when",
57454
+ "development",
57455
+ "your",
57456
+ "data",
57457
+ "hosting"
57458
+ ]
57459
+ }
57460
+ },
57461
57461
  {
57462
57462
  "id": "page-0718",
57463
57463
  "title": "Common issues",
@@ -60254,6 +60254,56 @@
60254
60254
  },
60255
60255
  {
60256
60256
  "id": "page-0763",
60257
+ "title": "Clockify credentials",
60258
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/clockify/index.md",
60259
+ "urlPath": "integrations/builtin/credentials/clockify/index.md",
60260
+ "category": "other",
60261
+ "subcategory": null,
60262
+ "nodeName": null,
60263
+ "nodeType": null,
60264
+ "content": {
60265
+ "markdown": "# Clockify credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## Prerequisites\n\nCreate a [Clockify](https://www.clockify.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Access your API key from your [Clockify Profile Settings](https://clockify.me/help/users/profile-settings).\n",
60266
+ "excerpt": "# Clockify credentials You can use these credentials to authenticate the following nodes: - [Clockify](../../app-nodes/n8n-nodes-base.clockify/) - [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/) ## Prerequisites Create a [Clockify](https://www.clockify.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service. ## Using API ke...",
60267
+ "sections": [
60268
+ {
60269
+ "title": "Clockify credentials",
60270
+ "level": 1,
60271
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)"
60272
+ }
60273
+ ]
60274
+ },
60275
+ "metadata": {
60276
+ "keywords": [
60277
+ "clockify",
60278
+ "credentials",
60279
+ "prerequisites",
60280
+ "supported",
60281
+ "authentication",
60282
+ "methods",
60283
+ "related",
60284
+ "resources",
60285
+ "using"
60286
+ ],
60287
+ "useCases": [],
60288
+ "operations": [],
60289
+ "codeExamples": 0,
60290
+ "complexity": "beginner",
60291
+ "readingTime": "1 min",
60292
+ "contentLength": 673,
60293
+ "relatedPages": []
60294
+ },
60295
+ "searchIndex": {
60296
+ "fullText": "clockify credentials # clockify credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [clockify trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## prerequisites\n\ncreate a [clockify](https://www.clockify.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [clockify's api documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: access your api key from your [clockify profile settings](https://clockify.me/help/users/profile-settings).\n clockify credentials",
60297
+ "importantTerms": [
60298
+ "clockify",
60299
+ "nodes",
60300
+ "credentials",
60301
+ "https"
60302
+ ]
60303
+ }
60304
+ },
60305
+ {
60306
+ "id": "page-0764",
60257
60307
  "title": "Cloudflare credentials",
60258
60308
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cloudflare/index.md",
60259
60309
  "urlPath": "integrations/builtin/credentials/cloudflare/index.md",
@@ -60308,7 +60358,7 @@
60308
60358
  }
60309
60359
  },
60310
60360
  {
60311
- "id": "page-0764",
60361
+ "id": "page-0765",
60312
60362
  "title": "Cockpit credentials",
60313
60363
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cockpit/index.md",
60314
60364
  "urlPath": "integrations/builtin/credentials/cockpit/index.md",
@@ -60365,7 +60415,7 @@
60365
60415
  }
60366
60416
  },
60367
60417
  {
60368
- "id": "page-0765",
60418
+ "id": "page-0766",
60369
60419
  "title": "Coda credentials",
60370
60420
  "url": "https://docs.n8n.io/integrations/builtin/credentials/coda/index.md",
60371
60421
  "urlPath": "integrations/builtin/credentials/coda/index.md",
@@ -60419,7 +60469,7 @@
60419
60469
  }
60420
60470
  },
60421
60471
  {
60422
- "id": "page-0766",
60472
+ "id": "page-0767",
60423
60473
  "title": "Cohere credentials",
60424
60474
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cohere/index.md",
60425
60475
  "urlPath": "integrations/builtin/credentials/cohere/index.md",
@@ -60472,56 +60522,6 @@
60472
60522
  ]
60473
60523
  }
60474
60524
  },
60475
- {
60476
- "id": "page-0767",
60477
- "title": "Clockify credentials",
60478
- "url": "https://docs.n8n.io/integrations/builtin/credentials/clockify/index.md",
60479
- "urlPath": "integrations/builtin/credentials/clockify/index.md",
60480
- "category": "other",
60481
- "subcategory": null,
60482
- "nodeName": null,
60483
- "nodeType": null,
60484
- "content": {
60485
- "markdown": "# Clockify credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## Prerequisites\n\nCreate a [Clockify](https://www.clockify.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Access your API key from your [Clockify Profile Settings](https://clockify.me/help/users/profile-settings).\n",
60486
- "excerpt": "# Clockify credentials You can use these credentials to authenticate the following nodes: - [Clockify](../../app-nodes/n8n-nodes-base.clockify/) - [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/) ## Prerequisites Create a [Clockify](https://www.clockify.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service. ## Using API ke...",
60487
- "sections": [
60488
- {
60489
- "title": "Clockify credentials",
60490
- "level": 1,
60491
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)"
60492
- }
60493
- ]
60494
- },
60495
- "metadata": {
60496
- "keywords": [
60497
- "clockify",
60498
- "credentials",
60499
- "prerequisites",
60500
- "supported",
60501
- "authentication",
60502
- "methods",
60503
- "related",
60504
- "resources",
60505
- "using"
60506
- ],
60507
- "useCases": [],
60508
- "operations": [],
60509
- "codeExamples": 0,
60510
- "complexity": "beginner",
60511
- "readingTime": "1 min",
60512
- "contentLength": 673,
60513
- "relatedPages": []
60514
- },
60515
- "searchIndex": {
60516
- "fullText": "clockify credentials # clockify credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [clockify trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## prerequisites\n\ncreate a [clockify](https://www.clockify.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [clockify's api documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: access your api key from your [clockify profile settings](https://clockify.me/help/users/profile-settings).\n clockify credentials",
60517
- "importantTerms": [
60518
- "clockify",
60519
- "nodes",
60520
- "credentials",
60521
- "https"
60522
- ]
60523
- }
60524
- },
60525
60525
  {
60526
60526
  "id": "page-0768",
60527
60527
  "title": "Contentful credentials",
@@ -83008,58 +83008,6 @@
83008
83008
  },
83009
83009
  {
83010
83010
  "id": "page-1138",
83011
- "title": "Google Drive Trigger",
83012
- "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger/index.md",
83013
- "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger/index.md",
83014
- "category": "trigger-nodes",
83015
- "subcategory": null,
83016
- "nodeName": "googledrivetrigger",
83017
- "nodeType": "n8n-nodes-base.googledrivetrigger",
83018
- "content": {
83019
- "markdown": "# Google Drive Trigger node\n\n[Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/google/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Google Drive Trigger integrations](https://n8n.io/integrations/google-drive-trigger/) page.\n\nManual Executions vs. Activation\n\nOn manual executions this node will return the last event matching its search criteria. If no event matches the criteria (for example because you are watching for files to be created but no files have been created so far), an error is thrown. Once saved and activated, the node will regularly check for any matching events and will trigger your workflow for each event found.\n\n## Common issues\n\nFor common questions or issues and suggested solutions, refer to [Common issues](common-issues/).\n",
83020
- "excerpt": "# Google Drive Trigger node [Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files. Credentials You can find authentication information for this node [here](../../credentials/google/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Google Drive Trigger integrations](https://n8n.io/integration...",
83021
- "sections": [
83022
- {
83023
- "title": "Google Drive Trigger node",
83024
- "level": 1,
83025
- "content": "[Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/google/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Google Drive Trigger integrations](https://n8n.io/integrations/google-drive-trigger/) page.\n\nManual Executions vs. Activation\n\nOn manual executions this node will return the last event matching its search criteria. If no event matches the criteria (for example because you are watching for files to be created but no files have been created so far), an error is thrown. Once saved and activated, the node will regularly check for any matching events and will trigger your workflow for each event found."
83026
- }
83027
- ]
83028
- },
83029
- "metadata": {
83030
- "keywords": [
83031
- "google",
83032
- "drive",
83033
- "trigger",
83034
- "node",
83035
- "common",
83036
- "issues"
83037
- ],
83038
- "useCases": [],
83039
- "operations": [],
83040
- "codeExamples": 0,
83041
- "complexity": "beginner",
83042
- "readingTime": "1 min",
83043
- "contentLength": 1059,
83044
- "relatedPages": []
83045
- },
83046
- "searchIndex": {
83047
- "fullText": "google drive trigger # google drive trigger node\n\n[google drive](https://drive.google.com) is a file storage and synchronization service developed by google. it allows users to store files on their servers, synchronize files across devices, and share files.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/google/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [google drive trigger integrations](https://n8n.io/integrations/google-drive-trigger/) page.\n\nmanual executions vs. activation\n\non manual executions this node will return the last event matching its search criteria. if no event matches the criteria (for example because you are watching for files to be created but no files have been created so far), an error is thrown. once saved and activated, the node will regularly check for any matching events and will trigger your workflow for each event found.\n\n## common issues\n\nfor common questions or issues and suggested solutions, refer to [common issues](common-issues/).\n google drive trigger node",
83048
- "importantTerms": [
83049
- "google",
83050
- "drive",
83051
- "trigger",
83052
- "node",
83053
- "files",
83054
- "common",
83055
- "issues",
83056
- "will",
83057
- "event"
83058
- ]
83059
- }
83060
- },
83061
- {
83062
- "id": "page-1139",
83063
83011
  "title": "Common issues",
83064
83012
  "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger/common-issues/index.md",
83065
83013
  "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger/common-issues/index.md",
@@ -83129,7 +83077,7 @@
83129
83077
  }
83130
83078
  },
83131
83079
  {
83132
- "id": "page-1140",
83080
+ "id": "page-1139",
83133
83081
  "title": "Google Sheets Trigger",
83134
83082
  "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.googlesheetstrigger/index.md",
83135
83083
  "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.googlesheetstrigger/index.md",
@@ -83183,6 +83131,58 @@
83183
83131
  ]
83184
83132
  }
83185
83133
  },
83134
+ {
83135
+ "id": "page-1140",
83136
+ "title": "Google Drive Trigger",
83137
+ "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger/index.md",
83138
+ "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger/index.md",
83139
+ "category": "trigger-nodes",
83140
+ "subcategory": null,
83141
+ "nodeName": "googledrivetrigger",
83142
+ "nodeType": "n8n-nodes-base.googledrivetrigger",
83143
+ "content": {
83144
+ "markdown": "# Google Drive Trigger node\n\n[Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/google/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Google Drive Trigger integrations](https://n8n.io/integrations/google-drive-trigger/) page.\n\nManual Executions vs. Activation\n\nOn manual executions this node will return the last event matching its search criteria. If no event matches the criteria (for example because you are watching for files to be created but no files have been created so far), an error is thrown. Once saved and activated, the node will regularly check for any matching events and will trigger your workflow for each event found.\n\n## Common issues\n\nFor common questions or issues and suggested solutions, refer to [Common issues](common-issues/).\n",
83145
+ "excerpt": "# Google Drive Trigger node [Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files. Credentials You can find authentication information for this node [here](../../credentials/google/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Google Drive Trigger integrations](https://n8n.io/integration...",
83146
+ "sections": [
83147
+ {
83148
+ "title": "Google Drive Trigger node",
83149
+ "level": 1,
83150
+ "content": "[Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/google/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Google Drive Trigger integrations](https://n8n.io/integrations/google-drive-trigger/) page.\n\nManual Executions vs. Activation\n\nOn manual executions this node will return the last event matching its search criteria. If no event matches the criteria (for example because you are watching for files to be created but no files have been created so far), an error is thrown. Once saved and activated, the node will regularly check for any matching events and will trigger your workflow for each event found."
83151
+ }
83152
+ ]
83153
+ },
83154
+ "metadata": {
83155
+ "keywords": [
83156
+ "google",
83157
+ "drive",
83158
+ "trigger",
83159
+ "node",
83160
+ "common",
83161
+ "issues"
83162
+ ],
83163
+ "useCases": [],
83164
+ "operations": [],
83165
+ "codeExamples": 0,
83166
+ "complexity": "beginner",
83167
+ "readingTime": "1 min",
83168
+ "contentLength": 1059,
83169
+ "relatedPages": []
83170
+ },
83171
+ "searchIndex": {
83172
+ "fullText": "google drive trigger # google drive trigger node\n\n[google drive](https://drive.google.com) is a file storage and synchronization service developed by google. it allows users to store files on their servers, synchronize files across devices, and share files.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/google/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [google drive trigger integrations](https://n8n.io/integrations/google-drive-trigger/) page.\n\nmanual executions vs. activation\n\non manual executions this node will return the last event matching its search criteria. if no event matches the criteria (for example because you are watching for files to be created but no files have been created so far), an error is thrown. once saved and activated, the node will regularly check for any matching events and will trigger your workflow for each event found.\n\n## common issues\n\nfor common questions or issues and suggested solutions, refer to [common issues](common-issues/).\n google drive trigger node",
83173
+ "importantTerms": [
83174
+ "google",
83175
+ "drive",
83176
+ "trigger",
83177
+ "node",
83178
+ "files",
83179
+ "common",
83180
+ "issues",
83181
+ "will",
83182
+ "event"
83183
+ ]
83184
+ }
83185
+ },
83186
83186
  {
83187
83187
  "id": "page-1141",
83188
83188
  "title": "Common issues",
@@ -92528,7 +92528,7 @@
92528
92528
  "page-0203",
92529
92529
  "page-0204",
92530
92530
  "page-0217",
92531
- "page-0717"
92531
+ "page-0716"
92532
92532
  ],
92533
92533
  "about": [
92534
92534
  "page-0001",
@@ -93113,7 +93113,7 @@
93113
93113
  "page-0713",
93114
93114
  "page-0714",
93115
93115
  "page-0715",
93116
- "page-0717",
93116
+ "page-0716",
93117
93117
  "page-0718",
93118
93118
  "page-0831",
93119
93119
  "page-0918",
@@ -93356,7 +93356,7 @@
93356
93356
  "page-0681",
93357
93357
  "page-0683",
93358
93358
  "page-0700",
93359
- "page-0717",
93359
+ "page-0716",
93360
93360
  "page-0969",
93361
93361
  "page-1137",
93362
93362
  "page-1194",
@@ -93413,7 +93413,7 @@
93413
93413
  "page-0003",
93414
93414
  "page-0013",
93415
93415
  "page-0144",
93416
- "page-1139",
93416
+ "page-1138",
93417
93417
  "page-1160",
93418
93418
  "page-1189",
93419
93419
  "page-1203",
@@ -93483,7 +93483,7 @@
93483
93483
  "page-0694",
93484
93484
  "page-0713",
93485
93485
  "page-0714",
93486
- "page-0716",
93486
+ "page-0717",
93487
93487
  "page-1061",
93488
93488
  "page-1104",
93489
93489
  "page-1117",
@@ -93773,7 +93773,7 @@
93773
93773
  "page-0420",
93774
93774
  "page-0457",
93775
93775
  "page-0549",
93776
- "page-0556",
93776
+ "page-0557",
93777
93777
  "page-0565",
93778
93778
  "page-0571",
93779
93779
  "page-0626",
@@ -93993,7 +93993,7 @@
93993
93993
  "page-0713",
93994
93994
  "page-0714",
93995
93995
  "page-0715",
93996
- "page-0717",
93996
+ "page-0716",
93997
93997
  "page-0718",
93998
93998
  "page-0736",
93999
93999
  "page-0737",
@@ -94179,7 +94179,7 @@
94179
94179
  "page-0661",
94180
94180
  "page-0674",
94181
94181
  "page-0713",
94182
- "page-0716",
94182
+ "page-0717",
94183
94183
  "page-1195",
94184
94184
  "page-1204",
94185
94185
  "page-1215",
@@ -94301,8 +94301,8 @@
94301
94301
  "page-0744",
94302
94302
  "page-0752",
94303
94303
  "page-0762",
94304
- "page-0764",
94305
94304
  "page-0765",
94305
+ "page-0766",
94306
94306
  "page-0768",
94307
94307
  "page-0777",
94308
94308
  "page-0786",
@@ -94413,7 +94413,7 @@
94413
94413
  "page-0688",
94414
94414
  "page-0700",
94415
94415
  "page-0708",
94416
- "page-1139",
94416
+ "page-1138",
94417
94417
  "page-1158",
94418
94418
  "page-1161",
94419
94419
  "page-1165",
@@ -94553,7 +94553,7 @@
94553
94553
  "page-0563",
94554
94554
  "page-0564",
94555
94555
  "page-0566",
94556
- "page-0717"
94556
+ "page-0716"
94557
94557
  ],
94558
94558
  "authentication": [
94559
94559
  "page-0003",
@@ -94568,7 +94568,7 @@
94568
94568
  "page-0699",
94569
94569
  "page-0708",
94570
94570
  "page-0714",
94571
- "page-0717",
94571
+ "page-0716",
94572
94572
  "page-0720",
94573
94573
  "page-0721",
94574
94574
  "page-0722",
@@ -96415,7 +96415,7 @@
96415
96415
  "page-0660",
96416
96416
  "page-0661",
96417
96417
  "page-0715",
96418
- "page-0716",
96418
+ "page-0717",
96419
96419
  "page-1061",
96420
96420
  "page-1104",
96421
96421
  "page-1117",
@@ -96454,7 +96454,7 @@
96454
96454
  "page-0566",
96455
96455
  "page-0569",
96456
96456
  "page-0618",
96457
- "page-0717",
96457
+ "page-0716",
96458
96458
  "page-0874",
96459
96459
  "page-1204"
96460
96460
  ],
@@ -96706,7 +96706,7 @@
96706
96706
  "page-0712",
96707
96707
  "page-0713",
96708
96708
  "page-0715",
96709
- "page-0717",
96709
+ "page-0716",
96710
96710
  "page-0718",
96711
96711
  "page-0798",
96712
96712
  "page-0805",
@@ -97049,7 +97049,7 @@
97049
97049
  "page-0026",
97050
97050
  "page-0525",
97051
97051
  "page-0679",
97052
- "page-1139",
97052
+ "page-1138",
97053
97053
  "page-1204"
97054
97054
  ],
97055
97055
  "selected": [
@@ -97149,7 +97149,7 @@
97149
97149
  "page-0529",
97150
97150
  "page-0537",
97151
97151
  "page-0546",
97152
- "page-0556",
97152
+ "page-0557",
97153
97153
  "page-0615",
97154
97154
  "page-0616",
97155
97155
  "page-0646",
@@ -97215,7 +97215,7 @@
97215
97215
  "page-0228",
97216
97216
  "page-0660",
97217
97217
  "page-0661",
97218
- "page-0716",
97218
+ "page-0717",
97219
97219
  "page-1154",
97220
97220
  "page-1155",
97221
97221
  "page-1156",
@@ -97368,7 +97368,7 @@
97368
97368
  "page-1119",
97369
97369
  "page-1120",
97370
97370
  "page-1135",
97371
- "page-1140",
97371
+ "page-1139",
97372
97372
  "page-1142"
97373
97373
  ],
97374
97374
  "destinations": [
@@ -97479,7 +97479,7 @@
97479
97479
  ],
97480
97480
  "initial": [
97481
97481
  "page-0012",
97482
- "page-0717"
97482
+ "page-0716"
97483
97483
  ],
97484
97484
  "assessment": [
97485
97485
  "page-0012"
@@ -97537,7 +97537,7 @@
97537
97537
  "page-0534",
97538
97538
  "page-0547",
97539
97539
  "page-0553",
97540
- "page-0557",
97540
+ "page-0556",
97541
97541
  "page-0668",
97542
97542
  "page-0674",
97543
97543
  "page-0704",
@@ -97652,7 +97652,7 @@
97652
97652
  "page-0659",
97653
97653
  "page-0666",
97654
97654
  "page-0691",
97655
- "page-0717",
97655
+ "page-0716",
97656
97656
  "page-0844",
97657
97657
  "page-1204",
97658
97658
  "page-1244"
@@ -98162,7 +98162,7 @@
98162
98162
  "page-0632",
98163
98163
  "page-0633",
98164
98164
  "page-0696",
98165
- "page-0717",
98165
+ "page-0716",
98166
98166
  "page-0718",
98167
98167
  "page-0939",
98168
98168
  "page-1204"
@@ -98433,7 +98433,7 @@
98433
98433
  "page-0015",
98434
98434
  "page-0661",
98435
98435
  "page-0671",
98436
- "page-0717"
98436
+ "page-0716"
98437
98437
  ],
98438
98438
  "under": [
98439
98439
  "page-0015"
@@ -98667,7 +98667,7 @@
98667
98667
  "page-0110",
98668
98668
  "page-0710",
98669
98669
  "page-0711",
98670
- "page-0717",
98670
+ "page-0716",
98671
98671
  "page-0718",
98672
98672
  "page-1163",
98673
98673
  "page-1204",
@@ -98937,7 +98937,7 @@
98937
98937
  "page-0699",
98938
98938
  "page-0703",
98939
98939
  "page-0710",
98940
- "page-0717",
98940
+ "page-0716",
98941
98941
  "page-0720",
98942
98942
  "page-0721",
98943
98943
  "page-0722",
@@ -99289,7 +99289,7 @@
99289
99289
  "page-1132",
99290
99290
  "page-1134",
99291
99291
  "page-1135",
99292
- "page-1140",
99292
+ "page-1139",
99293
99293
  "page-1142"
99294
99294
  ],
99295
99295
  "resources": [
@@ -99476,7 +99476,7 @@
99476
99476
  "page-0699",
99477
99477
  "page-0703",
99478
99478
  "page-0710",
99479
- "page-0717",
99479
+ "page-0716",
99480
99480
  "page-0720",
99481
99481
  "page-0721",
99482
99482
  "page-0722",
@@ -99828,7 +99828,7 @@
99828
99828
  "page-1132",
99829
99829
  "page-1134",
99830
99830
  "page-1135",
99831
- "page-1140",
99831
+ "page-1139",
99832
99832
  "page-1142",
99833
99833
  "page-1155",
99834
99834
  "page-1160",
@@ -100263,7 +100263,7 @@
100263
100263
  "page-0711",
100264
100264
  "page-0712",
100265
100265
  "page-0714",
100266
- "page-0717",
100266
+ "page-0716",
100267
100267
  "page-1204",
100268
100268
  "page-1249"
100269
100269
  ],
@@ -100315,7 +100315,7 @@
100315
100315
  "page-0555",
100316
100316
  "page-0630",
100317
100317
  "page-0634",
100318
- "page-0717",
100318
+ "page-0716",
100319
100319
  "page-0795",
100320
100320
  "page-0901",
100321
100321
  "page-1020",
@@ -100445,9 +100445,9 @@
100445
100445
  "page-0752",
100446
100446
  "page-0756",
100447
100447
  "page-0762",
100448
- "page-0763",
100449
100448
  "page-0764",
100450
100449
  "page-0765",
100450
+ "page-0766",
100451
100451
  "page-0768",
100452
100452
  "page-0769",
100453
100453
  "page-0777",
@@ -100562,7 +100562,7 @@
100562
100562
  "page-0696",
100563
100563
  "page-0710",
100564
100564
  "page-0711",
100565
- "page-0717",
100565
+ "page-0716",
100566
100566
  "page-1204"
100567
100567
  ],
100568
100568
  "timeouts": [
@@ -101072,7 +101072,7 @@
101072
101072
  "page-0711",
101073
101073
  "page-0712",
101074
101074
  "page-0714",
101075
- "page-0717",
101075
+ "page-0716",
101076
101076
  "page-1137",
101077
101077
  "page-1230"
101078
101078
  ],
@@ -101189,7 +101189,7 @@
101189
101189
  "page-0134",
101190
101190
  "page-0232",
101191
101191
  "page-0673",
101192
- "page-1139",
101192
+ "page-1138",
101193
101193
  "page-1162",
101194
101194
  "page-1181",
101195
101195
  "page-1203",
@@ -101458,7 +101458,7 @@
101458
101458
  "page-0660",
101459
101459
  "page-0661",
101460
101460
  "page-0715",
101461
- "page-0716",
101461
+ "page-0717",
101462
101462
  "page-0969",
101463
101463
  "page-1155",
101464
101464
  "page-1158",
@@ -101757,7 +101757,7 @@
101757
101757
  "page-0713",
101758
101758
  "page-0714",
101759
101759
  "page-0715",
101760
- "page-0717",
101760
+ "page-0716",
101761
101761
  "page-0718",
101762
101762
  "page-0737",
101763
101763
  "page-0739",
@@ -101862,7 +101862,7 @@
101862
101862
  "page-0510",
101863
101863
  "page-0511",
101864
101864
  "page-0512",
101865
- "page-1140",
101865
+ "page-1139",
101866
101866
  "page-1141",
101867
101867
  "page-1203"
101868
101868
  ],
@@ -101932,7 +101932,7 @@
101932
101932
  "page-0037",
101933
101933
  "page-0505",
101934
101934
  "page-0547",
101935
- "page-0556",
101935
+ "page-0557",
101936
101936
  "page-0668",
101937
101937
  "page-0702",
101938
101938
  "page-0736",
@@ -102111,7 +102111,7 @@
102111
102111
  "page-0710",
102112
102112
  "page-0712",
102113
102113
  "page-0714",
102114
- "page-0717",
102114
+ "page-0716",
102115
102115
  "page-0735",
102116
102116
  "page-1041",
102117
102117
  "page-1104",
@@ -103671,7 +103671,7 @@
103671
103671
  "page-0708",
103672
103672
  "page-0714",
103673
103673
  "page-0715",
103674
- "page-0717",
103674
+ "page-0716",
103675
103675
  "page-1200"
103676
103676
  ],
103677
103677
  "`$response`": [
@@ -104388,7 +104388,7 @@
104388
104388
  "page-0553",
104389
104389
  "page-0554",
104390
104390
  "page-0555",
104391
- "page-0557",
104391
+ "page-0556",
104392
104392
  "page-0558",
104393
104393
  "page-0659",
104394
104394
  "page-1168",
@@ -105462,7 +105462,7 @@
105462
105462
  "page-1008",
105463
105463
  "page-1009",
105464
105464
  "page-1136",
105465
- "page-1139",
105465
+ "page-1138",
105466
105466
  "page-1162",
105467
105467
  "page-1169",
105468
105468
  "page-1187",
@@ -105608,7 +105608,7 @@
105608
105608
  "include": [
105609
105609
  "page-0142",
105610
105610
  "page-0555",
105611
- "page-0556",
105611
+ "page-0557",
105612
105612
  "page-0565",
105613
105613
  "page-0683",
105614
105614
  "page-0686",
@@ -105668,7 +105668,7 @@
105668
105668
  "page-0512",
105669
105669
  "page-0550",
105670
105670
  "page-0553",
105671
- "page-0556",
105671
+ "page-0557",
105672
105672
  "page-0710"
105673
105673
  ],
105674
105674
  "info": [
@@ -105860,7 +105860,7 @@
105860
105860
  "page-0457",
105861
105861
  "page-0492",
105862
105862
  "page-0528",
105863
- "page-0556",
105863
+ "page-0557",
105864
105864
  "page-0659",
105865
105865
  "page-0666",
105866
105866
  "page-0682",
@@ -106062,7 +106062,7 @@
106062
106062
  ],
106063
106063
  "timeout": [
106064
106064
  "page-0160",
106065
- "page-0556",
106065
+ "page-0557",
106066
106066
  "page-0588",
106067
106067
  "page-0594",
106068
106068
  "page-0595",
@@ -106296,7 +106296,7 @@
106296
106296
  "proxy": [
106297
106297
  "page-0167",
106298
106298
  "page-0224",
106299
- "page-0556",
106299
+ "page-0557",
106300
106300
  "page-0585",
106301
106301
  "page-0586",
106302
106302
  "page-0589",
@@ -106564,7 +106564,7 @@
106564
106564
  "page-0708",
106565
106565
  "page-0710",
106566
106566
  "page-0714",
106567
- "page-0717",
106567
+ "page-0716",
106568
106568
  "page-1104",
106569
106569
  "page-1137",
106570
106570
  "page-1142",
@@ -106686,7 +106686,7 @@
106686
106686
  "page-0199",
106687
106687
  "page-0239",
106688
106688
  "page-0637",
106689
- "page-0717"
106689
+ "page-0716"
106690
106690
  ],
106691
106691
  "without": [
106692
106692
  "page-0199",
@@ -106709,7 +106709,7 @@
106709
106709
  "page-0557",
106710
106710
  "page-0651",
106711
106711
  "page-0686",
106712
- "page-0717",
106712
+ "page-0716",
106713
106713
  "page-1169",
106714
106714
  "page-1187",
106715
106715
  "page-1204"
@@ -107300,7 +107300,7 @@
107300
107300
  "development": [
107301
107301
  "page-0205",
107302
107302
  "page-0714",
107303
- "page-0716",
107303
+ "page-0717",
107304
107304
  "page-0954",
107305
107305
  "page-1157",
107306
107306
  "page-1206"
@@ -107319,7 +107319,7 @@
107319
107319
  ],
107320
107320
  "checks": [
107321
107321
  "page-0206",
107322
- "page-0556"
107322
+ "page-0557"
107323
107323
  ],
107324
107324
  "obtain": [
107325
107325
  "page-0208"
@@ -107368,7 +107368,7 @@
107368
107368
  ],
107369
107369
  "manually": [
107370
107370
  "page-0212",
107371
- "page-0717",
107371
+ "page-0716",
107372
107372
  "page-1151",
107373
107373
  "page-1240"
107374
107374
  ],
@@ -107442,7 +107442,7 @@
107442
107442
  "page-0217",
107443
107443
  "page-0248",
107444
107444
  "page-0475",
107445
- "page-0717",
107445
+ "page-0716",
107446
107446
  "page-1203",
107447
107447
  "page-1256",
107448
107448
  "page-1258"
@@ -107946,7 +107946,7 @@
107946
107946
  ],
107947
107947
  "limit": [
107948
107948
  "page-0232",
107949
- "page-0556",
107949
+ "page-0557",
107950
107950
  "page-0565",
107951
107951
  "page-0626",
107952
107952
  "page-0669",
@@ -108345,21 +108345,21 @@
108345
108345
  ],
108346
108346
  "clockify": [
108347
108347
  "page-0275",
108348
- "page-0767",
108348
+ "page-0763",
108349
108349
  "page-1054"
108350
108350
  ],
108351
108351
  "cloudflare": [
108352
108352
  "page-0276",
108353
- "page-0763",
108353
+ "page-0764",
108354
108354
  "page-1203"
108355
108355
  ],
108356
108356
  "cockpit": [
108357
108357
  "page-0277",
108358
- "page-0764"
108358
+ "page-0765"
108359
108359
  ],
108360
108360
  "coda": [
108361
108361
  "page-0278",
108362
- "page-0765"
108362
+ "page-0766"
108363
108363
  ],
108364
108364
  "coingecko": [
108365
108365
  "page-0279"
@@ -108794,7 +108794,7 @@
108794
108794
  ],
108795
108795
  "auto": [
108796
108796
  "page-0373",
108797
- "page-0556",
108797
+ "page-0557",
108798
108798
  "page-0558",
108799
108799
  "page-0608",
108800
108800
  "page-1215"
@@ -109401,7 +109401,7 @@
109401
109401
  "page-1026",
109402
109402
  "page-1027",
109403
109403
  "page-1136",
109404
- "page-1139"
109404
+ "page-1138"
109405
109405
  ],
109406
109406
  "please": [
109407
109407
  "page-0495",
@@ -109429,7 +109429,7 @@
109429
109429
  "page-0498",
109430
109430
  "page-0499",
109431
109431
  "page-0547",
109432
- "page-0556",
109432
+ "page-0557",
109433
109433
  "page-0674",
109434
109434
  "page-1135"
109435
109435
  ],
@@ -109476,7 +109476,7 @@
109476
109476
  "page-0508",
109477
109477
  "page-1028",
109478
109478
  "page-1138",
109479
- "page-1139"
109479
+ "page-1140"
109480
109480
  ],
109481
109481
  "hasn't": [
109482
109482
  "page-0504",
@@ -109620,7 +109620,7 @@
109620
109620
  "supabase": [
109621
109621
  "page-0520",
109622
109622
  "page-0521",
109623
- "page-0557",
109623
+ "page-0556",
109624
109624
  "page-0970"
109625
109625
  ],
109626
109626
  "accessible": [
@@ -109685,7 +109685,7 @@
109685
109685
  "page-0629",
109686
109686
  "page-0661",
109687
109687
  "page-0693",
109688
- "page-0717",
109688
+ "page-0716",
109689
109689
  "page-1169",
109690
109690
  "page-1187"
109691
109691
  ],
@@ -109698,7 +109698,7 @@
109698
109698
  "page-0525",
109699
109699
  "page-0679",
109700
109700
  "page-0711",
109701
- "page-1139"
109701
+ "page-1138"
109702
109702
  ],
109703
109703
  "animation": [
109704
109704
  "page-0527"
@@ -110094,12 +110094,12 @@
110094
110094
  ],
110095
110095
  "insert,": [
110096
110096
  "page-0553",
110097
- "page-0557",
110097
+ "page-0556",
110098
110098
  "page-0558"
110099
110099
  ],
110100
110100
  "update,": [
110101
110101
  "page-0553",
110102
- "page-0557",
110102
+ "page-0556",
110103
110103
  "page-0558"
110104
110104
  ],
110105
110105
  "**update": [
@@ -110114,60 +110114,60 @@
110114
110114
  "page-1204"
110115
110115
  ],
110116
110116
  "weaviate": [
110117
- "page-0556",
110117
+ "page-0557",
110118
110118
  "page-1002"
110119
110119
  ],
110120
110120
  "keys": [
110121
- "page-0556",
110121
+ "page-0557",
110122
110122
  "page-0678",
110123
110123
  "page-1168",
110124
110124
  "page-1183",
110125
110125
  "page-1204"
110126
110126
  ],
110127
110127
  "hybrid:": [
110128
- "page-0556"
110128
+ "page-0557"
110129
110129
  ],
110130
110130
  "explain": [
110131
- "page-0556"
110131
+ "page-0557"
110132
110132
  ],
110133
110133
  "score": [
110134
- "page-0556"
110134
+ "page-0557"
110135
110135
  ],
110136
110136
  "fusion": [
110137
- "page-0556"
110137
+ "page-0557"
110138
110138
  ],
110139
110139
  "alpha": [
110140
- "page-0556",
110140
+ "page-0557",
110141
110141
  "page-1204"
110142
110142
  ],
110143
110143
  "properties": [
110144
- "page-0556",
110144
+ "page-0557",
110145
110145
  "page-1183",
110146
110146
  "page-1187"
110147
110147
  ],
110148
110148
  "distance": [
110149
- "page-0556"
110149
+ "page-0557"
110150
110150
  ],
110151
110151
  "tenant": [
110152
- "page-0556"
110152
+ "page-0557"
110153
110153
  ],
110154
110154
  "skip": [
110155
- "page-0556",
110155
+ "page-0557",
110156
110156
  "page-0644"
110157
110157
  ],
110158
110158
  "init": [
110159
- "page-0556",
110159
+ "page-0557",
110160
110160
  "page-1187"
110161
110161
  ],
110162
110162
  "grpc": [
110163
- "page-0556"
110163
+ "page-0557"
110164
110164
  ],
110165
110165
  "dimensions": [
110166
110166
  "page-0558"
110167
110167
  ],
110168
110168
  "embedded": [
110169
110169
  "page-0558",
110170
- "page-0717",
110170
+ "page-0716",
110171
110171
  "page-0718"
110172
110172
  ],
110173
110173
  "error:": [
@@ -110271,7 +110271,7 @@
110271
110271
  "page-0587",
110272
110272
  "page-0597",
110273
110273
  "page-0610",
110274
- "page-0766"
110274
+ "page-0767"
110275
110275
  ],
110276
110276
  "palm": [
110277
110277
  "page-0577"
@@ -111081,35 +111081,35 @@
111081
111081
  "page-0715"
111082
111082
  ],
111083
111083
  "make": [
111084
- "page-0717",
111084
+ "page-0716",
111085
111085
  "page-1254"
111086
111086
  ],
111087
111087
  "publicly": [
111088
- "page-0717"
111088
+ "page-0716"
111089
111089
  ],
111090
111090
  "message(s)": [
111091
- "page-0717"
111091
+ "page-0716"
111092
111092
  ],
111093
111093
  "origin": [
111094
- "page-0717"
111094
+ "page-0716"
111095
111095
  ],
111096
111096
  "(cors)": [
111097
- "page-0717"
111097
+ "page-0716"
111098
111098
  ],
111099
111099
  "placeholder,": [
111100
- "page-0717"
111100
+ "page-0716"
111101
111101
  ],
111102
111102
  "title,": [
111103
- "page-0717"
111103
+ "page-0716"
111104
111104
  ],
111105
111105
  "subtitle": [
111106
- "page-0717"
111106
+ "page-0716"
111107
111107
  ],
111108
111108
  "button": [
111109
- "page-0717"
111109
+ "page-0716"
111110
111110
  ],
111111
111111
  "click": [
111112
- "page-0717"
111112
+ "page-0716"
111113
111113
  ],
111114
111114
  "acuity": [
111115
111115
  "page-0722",
@@ -114891,7 +114891,7 @@
114891
114891
  "webhook": [
114892
114892
  "page-0714",
114893
114893
  "page-0715",
114894
- "page-0716"
114894
+ "page-0717"
114895
114895
  ],
114896
114896
  "activecampaigntrigger": [
114897
114897
  "page-1038"
@@ -115169,10 +115169,10 @@
115169
115169
  ],
115170
115170
  "googledrivetrigger": [
115171
115171
  "page-1138",
115172
- "page-1139"
115172
+ "page-1140"
115173
115173
  ],
115174
115174
  "googlesheetstrigger": [
115175
- "page-1140",
115175
+ "page-1139",
115176
115176
  "page-1141"
115177
115177
  ],
115178
115178
  "telegramtrigger": [