-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9906621
commit 1b47f67
Showing
3 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: Null | ||
id: null-t | ||
hide_title: true | ||
slug: /transformers/system/null-t | ||
--- | ||
|
||
import { TransformerPageHeader } from '@site/src/CustomComponents/TransformerPageHeader.tsx'; | ||
|
||
import { DocsTable } from '@site/src/CustomComponents/DocsTable.tsx'; | ||
|
||
<TransformerPageHeader | ||
title="Null" | ||
type="string" | ||
apiRef="https://github.com/nucleuscloud/neosync/blob/main/worker/internal/benthos/transformers/activities.go" | ||
/> | ||
|
||
## Definition | ||
|
||
The null transformer simply returns a null value. This may be useful if you a column that can't be null but don't have a specific value that you want to insert. | ||
|
||
## Configurations | ||
|
||
There are no configurations for the null transformer. | ||
|
||
## Examples | ||
|
||
Here are some examples of what an output null value may look like. | ||
|
||
<DocsTable | ||
headers={['Example Input', 'Example Output']} | ||
rowData={[ | ||
{ | ||
data: ['N/A', 'null'], | ||
}, | ||
]} | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters