@n8n-as-code/skills 1.8.0 → 1.8.1
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-
|
|
2
|
+
"generatedAt": "2026-04-09T19:44:57.386Z",
|
|
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": "
|
|
43623
|
-
"url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.
|
|
43624
|
-
"urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.
|
|
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": "#
|
|
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": "
|
|
43634
|
+
"title": "Supabase Vector Store node",
|
|
43635
43635
|
"level": 1,
|
|
43636
|
-
"content": "Use the
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
43690
|
-
"
|
|
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":
|
|
43686
|
+
"codeExamples": 0,
|
|
43707
43687
|
"complexity": "intermediate",
|
|
43708
|
-
"readingTime": "
|
|
43709
|
-
"contentLength":
|
|
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
|
-
"
|
|
43730
|
-
"many",
|
|
43731
|
-
"insert",
|
|
43707
|
+
"database",
|
|
43732
43708
|
"chain",
|
|
43733
|
-
"
|
|
43734
|
-
"
|
|
43735
|
-
"
|
|
43736
|
-
"
|
|
43737
|
-
"search",
|
|
43709
|
+
"https",
|
|
43710
|
+
"update",
|
|
43711
|
+
"table",
|
|
43712
|
+
"insert",
|
|
43738
43713
|
"from",
|
|
43739
|
-
"
|
|
43740
|
-
"
|
|
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
|
-
"
|
|
43752
|
-
"
|
|
43720
|
+
"parameters",
|
|
43721
|
+
"when",
|
|
43753
43722
|
"example",
|
|
43723
|
+
"workflows",
|
|
43754
43724
|
"answer",
|
|
43755
|
-
"
|
|
43756
|
-
"
|
|
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": "
|
|
43771
|
-
"url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.
|
|
43772
|
-
"urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.
|
|
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": "#
|
|
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": "
|
|
43762
|
+
"title": "Weaviate Vector Store node",
|
|
43783
43763
|
"level": 1,
|
|
43784
|
-
"content": "Use the
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
43824
|
-
"
|
|
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":
|
|
43834
|
+
"codeExamples": 1,
|
|
43835
43835
|
"complexity": "intermediate",
|
|
43836
|
-
"readingTime": "
|
|
43837
|
-
"contentLength":
|
|
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
|
-
"
|
|
43848
|
+
"retrieve",
|
|
43849
43849
|
"tool",
|
|
43850
|
-
"with",
|
|
43851
43850
|
"agent",
|
|
43852
|
-
"
|
|
43851
|
+
"https",
|
|
43852
|
+
"this",
|
|
43853
|
+
"with",
|
|
43853
43854
|
"name",
|
|
43855
|
+
"collection",
|
|
43854
43856
|
"nodes",
|
|
43855
|
-
"
|
|
43856
|
-
"
|
|
43857
|
-
"https",
|
|
43858
|
-
"update",
|
|
43859
|
-
"table",
|
|
43857
|
+
"docs",
|
|
43858
|
+
"many",
|
|
43860
43859
|
"insert",
|
|
43861
|
-
"
|
|
43862
|
-
"
|
|
43860
|
+
"chain",
|
|
43861
|
+
"more",
|
|
43862
|
+
"checks",
|
|
43863
43863
|
"results",
|
|
43864
|
-
"
|
|
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
|
-
"
|
|
43877
|
+
"langchain",
|
|
43867
43878
|
"enter",
|
|
43868
|
-
"
|
|
43869
|
-
"
|
|
43879
|
+
"query",
|
|
43880
|
+
"retriever",
|
|
43870
43881
|
"example",
|
|
43871
|
-
"workflows",
|
|
43872
43882
|
"answer",
|
|
43873
|
-
"
|
|
43874
|
-
"
|
|
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
|
},
|
|
@@ -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-
|
|
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-
|
|
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-
|
|
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",
|
|
@@ -93773,7 +93773,7 @@
|
|
|
93773
93773
|
"page-0420",
|
|
93774
93774
|
"page-0457",
|
|
93775
93775
|
"page-0549",
|
|
93776
|
-
"page-
|
|
93776
|
+
"page-0557",
|
|
93777
93777
|
"page-0565",
|
|
93778
93778
|
"page-0571",
|
|
93779
93779
|
"page-0626",
|
|
@@ -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",
|
|
@@ -97149,7 +97149,7 @@
|
|
|
97149
97149
|
"page-0529",
|
|
97150
97150
|
"page-0537",
|
|
97151
97151
|
"page-0546",
|
|
97152
|
-
"page-
|
|
97152
|
+
"page-0557",
|
|
97153
97153
|
"page-0615",
|
|
97154
97154
|
"page-0616",
|
|
97155
97155
|
"page-0646",
|
|
@@ -97537,7 +97537,7 @@
|
|
|
97537
97537
|
"page-0534",
|
|
97538
97538
|
"page-0547",
|
|
97539
97539
|
"page-0553",
|
|
97540
|
-
"page-
|
|
97540
|
+
"page-0556",
|
|
97541
97541
|
"page-0668",
|
|
97542
97542
|
"page-0674",
|
|
97543
97543
|
"page-0704",
|
|
@@ -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",
|
|
@@ -101932,7 +101932,7 @@
|
|
|
101932
101932
|
"page-0037",
|
|
101933
101933
|
"page-0505",
|
|
101934
101934
|
"page-0547",
|
|
101935
|
-
"page-
|
|
101935
|
+
"page-0557",
|
|
101936
101936
|
"page-0668",
|
|
101937
101937
|
"page-0702",
|
|
101938
101938
|
"page-0736",
|
|
@@ -104388,7 +104388,7 @@
|
|
|
104388
104388
|
"page-0553",
|
|
104389
104389
|
"page-0554",
|
|
104390
104390
|
"page-0555",
|
|
104391
|
-
"page-
|
|
104391
|
+
"page-0556",
|
|
104392
104392
|
"page-0558",
|
|
104393
104393
|
"page-0659",
|
|
104394
104394
|
"page-1168",
|
|
@@ -105608,7 +105608,7 @@
|
|
|
105608
105608
|
"include": [
|
|
105609
105609
|
"page-0142",
|
|
105610
105610
|
"page-0555",
|
|
105611
|
-
"page-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
106299
|
+
"page-0557",
|
|
106300
106300
|
"page-0585",
|
|
106301
106301
|
"page-0586",
|
|
106302
106302
|
"page-0589",
|
|
@@ -107319,7 +107319,7 @@
|
|
|
107319
107319
|
],
|
|
107320
107320
|
"checks": [
|
|
107321
107321
|
"page-0206",
|
|
107322
|
-
"page-
|
|
107322
|
+
"page-0557"
|
|
107323
107323
|
],
|
|
107324
107324
|
"obtain": [
|
|
107325
107325
|
"page-0208"
|
|
@@ -107946,7 +107946,7 @@
|
|
|
107946
107946
|
],
|
|
107947
107947
|
"limit": [
|
|
107948
107948
|
"page-0232",
|
|
107949
|
-
"page-
|
|
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-
|
|
108348
|
+
"page-0763",
|
|
108349
108349
|
"page-1054"
|
|
108350
108350
|
],
|
|
108351
108351
|
"cloudflare": [
|
|
108352
108352
|
"page-0276",
|
|
108353
|
-
"page-
|
|
108353
|
+
"page-0764",
|
|
108354
108354
|
"page-1203"
|
|
108355
108355
|
],
|
|
108356
108356
|
"cockpit": [
|
|
108357
108357
|
"page-0277",
|
|
108358
|
-
"page-
|
|
108358
|
+
"page-0765"
|
|
108359
108359
|
],
|
|
108360
108360
|
"coda": [
|
|
108361
108361
|
"page-0278",
|
|
108362
|
-
"page-
|
|
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-
|
|
108797
|
+
"page-0557",
|
|
108798
108798
|
"page-0558",
|
|
108799
108799
|
"page-0608",
|
|
108800
108800
|
"page-1215"
|
|
@@ -109429,7 +109429,7 @@
|
|
|
109429
109429
|
"page-0498",
|
|
109430
109430
|
"page-0499",
|
|
109431
109431
|
"page-0547",
|
|
109432
|
-
"page-
|
|
109432
|
+
"page-0557",
|
|
109433
109433
|
"page-0674",
|
|
109434
109434
|
"page-1135"
|
|
109435
109435
|
],
|
|
@@ -109620,7 +109620,7 @@
|
|
|
109620
109620
|
"supabase": [
|
|
109621
109621
|
"page-0520",
|
|
109622
109622
|
"page-0521",
|
|
109623
|
-
"page-
|
|
109623
|
+
"page-0556",
|
|
109624
109624
|
"page-0970"
|
|
109625
109625
|
],
|
|
109626
109626
|
"accessible": [
|
|
@@ -110094,12 +110094,12 @@
|
|
|
110094
110094
|
],
|
|
110095
110095
|
"insert,": [
|
|
110096
110096
|
"page-0553",
|
|
110097
|
-
"page-
|
|
110097
|
+
"page-0556",
|
|
110098
110098
|
"page-0558"
|
|
110099
110099
|
],
|
|
110100
110100
|
"update,": [
|
|
110101
110101
|
"page-0553",
|
|
110102
|
-
"page-
|
|
110102
|
+
"page-0556",
|
|
110103
110103
|
"page-0558"
|
|
110104
110104
|
],
|
|
110105
110105
|
"**update": [
|
|
@@ -110114,53 +110114,53 @@
|
|
|
110114
110114
|
"page-1204"
|
|
110115
110115
|
],
|
|
110116
110116
|
"weaviate": [
|
|
110117
|
-
"page-
|
|
110117
|
+
"page-0557",
|
|
110118
110118
|
"page-1002"
|
|
110119
110119
|
],
|
|
110120
110120
|
"keys": [
|
|
110121
|
-
"page-
|
|
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-
|
|
110128
|
+
"page-0557"
|
|
110129
110129
|
],
|
|
110130
110130
|
"explain": [
|
|
110131
|
-
"page-
|
|
110131
|
+
"page-0557"
|
|
110132
110132
|
],
|
|
110133
110133
|
"score": [
|
|
110134
|
-
"page-
|
|
110134
|
+
"page-0557"
|
|
110135
110135
|
],
|
|
110136
110136
|
"fusion": [
|
|
110137
|
-
"page-
|
|
110137
|
+
"page-0557"
|
|
110138
110138
|
],
|
|
110139
110139
|
"alpha": [
|
|
110140
|
-
"page-
|
|
110140
|
+
"page-0557",
|
|
110141
110141
|
"page-1204"
|
|
110142
110142
|
],
|
|
110143
110143
|
"properties": [
|
|
110144
|
-
"page-
|
|
110144
|
+
"page-0557",
|
|
110145
110145
|
"page-1183",
|
|
110146
110146
|
"page-1187"
|
|
110147
110147
|
],
|
|
110148
110148
|
"distance": [
|
|
110149
|
-
"page-
|
|
110149
|
+
"page-0557"
|
|
110150
110150
|
],
|
|
110151
110151
|
"tenant": [
|
|
110152
|
-
"page-
|
|
110152
|
+
"page-0557"
|
|
110153
110153
|
],
|
|
110154
110154
|
"skip": [
|
|
110155
|
-
"page-
|
|
110155
|
+
"page-0557",
|
|
110156
110156
|
"page-0644"
|
|
110157
110157
|
],
|
|
110158
110158
|
"init": [
|
|
110159
|
-
"page-
|
|
110159
|
+
"page-0557",
|
|
110160
110160
|
"page-1187"
|
|
110161
110161
|
],
|
|
110162
110162
|
"grpc": [
|
|
110163
|
-
"page-
|
|
110163
|
+
"page-0557"
|
|
110164
110164
|
],
|
|
110165
110165
|
"dimensions": [
|
|
110166
110166
|
"page-0558"
|
|
@@ -110271,7 +110271,7 @@
|
|
|
110271
110271
|
"page-0587",
|
|
110272
110272
|
"page-0597",
|
|
110273
110273
|
"page-0610",
|
|
110274
|
-
"page-
|
|
110274
|
+
"page-0767"
|
|
110275
110275
|
],
|
|
110276
110276
|
"palm": [
|
|
110277
110277
|
"page-0577"
|