From d050a3af9e7a8ff930fbd1938f8f1a6ae2a8d1db Mon Sep 17 00:00:00 2001 From: Khaliq Date: Wed, 9 Aug 2023 12:04:50 +0200 Subject: [PATCH] [gh-#893] add default --- docs-v2/sdks/node.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-v2/sdks/node.mdx b/docs-v2/sdks/node.mdx index b46e224f1f..4b8961459a 100644 --- a/docs-v2/sdks/node.mdx +++ b/docs-v2/sdks/node.mdx @@ -230,7 +230,7 @@ const records = await nango.getRecords({ offset: , // Optional: For pagination: The number of records to skip. If not passed, no records are skipped. sortBy: 'id' | 'createdAt' | 'updatedAt', // Optional: Optional: Set how the records are sorted. The default is by 'id' order: 'asc' | 'desc', // Optional: Set the order of results. The default is 'desc' - includeNangoMetadata: // Optional: Include Nango metadata that wraps the response + includeNangoMetadata: // Optional: Include Nango metadata that wraps the response, the default is false }); console.log(records);