web3.db-fileconnector
Version:
GraphQL System Built on web3 technologies. Web3.DB is an open database built on top of web3 technologies. It is a decentralized, open-source database that allows users to store and query data in a secure and efficient manner. The system is designed to be
36 lines (35 loc) • 1.03 kB
JSON
{
"id": "csv-uploader",
"name": "CSV Uploader",
"logo": "/img/csv-uploader-logo.png",
"description": "Plugin to allow you to upload entire CSV files to Ceramic.",
"hooks": ["generate"],
"actions": [
{
"type": "popup",
"label": "Upload",
"route": "upload"
}
],
"variables": [
{
"name": "Do you want to use a specific model?",
"description": "If you don't we will automatically create a model based on your CSV fields.",
"id": "use_existing_model",
"type": "select",
"options": [
{ "value": "no", "label": "No" },
{ "value": "yes", "label": "Yes" }
],
"per_context": true
},
{
"name": "Model",
"type": "string",
"description": "The model used by the streams created by the plugin. It must fit the columns names of your CSV file.",
"id": "model_id",
"conditions": [{ "id": "use_existing_model", "value": "yes" }],
"per_context": true
}
]
}