Jump to Content
MeshSDK
HomeGuidesAPI Reference
v1.0

Log InMeshSDK
Guides
Log In
v1.0HomeGuidesAPI Reference

Introduction

  • Platform
  • Our Channel Partners
  • Concepts
    • Instruxi Data Mesh
    • Data Mesh Design Pattern
    • Data Mesh Advantages
    • Virtual NFT Gateway
  • Example Use Cases
  • Glossary of Terms
  • FAQ's

Getting Started

  • Pre-requisites
  • Mesh API
  • Mesh SDK
    • Connection Utility
    • Enforcer
      • Sign In With Ethereum (SiWe)
      • Validate Authorization
      • Account Exists
    • Object Store
      • Create Account Bucket
      • Upload File
      • List Files
      • Create Access Grant
      • Download File
      • Delete File
      • Copy File
      • Move File
      • Get File Metadata
      • Update File Metadata
      • Create Pre-signed URL
  • Functions Beacon
    • Contract Details
    • Mesh Identity
  • SxT Utils
    • Registration Manager
    • Session Manager
    • Schema Manager
    • Business Objects
    • Master Data Manager
    • Table Manager
      • Security Manager
      • Biscuit Maker
      • DDL Manager
      • DML Manager
      • DQL Manager
      • SQL Definitions
      • Table Definitions
    • Stream Manager
    • Route Manager
  • Hosting a Mesh Server (Advanced)
Powered by 

Master Data Manager

The data directory can be used to queue insert, update, and delete operations over the project's business-objects definitions

Suggest Edits

Lists --> data/insert/Lists.json

[
    {
        "id": 1,
        "list": "Test List"
    },
    {
        "id": 2,
        "list": "Another List"
    }
]

Tasks -->data/insert/Lists.json

[
    {
        "id": 1,
        "list_id": 1,
        "task": "Task 1",
        "complete": false
    },    
    {
        "id": 2,
        "list_id": 1,
        "task": "Task 2",
        "complete": true
    }
]

Updated about 1 year ago


What’s Next
  • Table Manager
  • Table of Contents
    • Lists --> data/insert/Lists.json
    • Tasks -->data/insert/Lists.json