Gemini Docs
  • Gemini Overview
  • 🎯Use cases & Benefits
  • 🚴‍♂️Getting Started
  • Backend Module
    • Overview
    • Getting Started
      • REST API - Micronaut MongoDB
    • Rest API
      • Basic CRUD
        • POST /data/{entity}
        • GET /data/{entity}/{id}
        • PUT /data/{entity}/{id}
        • PATCH /data/{entity}/{id}
        • DELETE /data/{entity}/{id}
      • Getting Data
        • GET All Data
        • Pagination
        • Filters
        • Sorting
      • Rest Configuration
        • Big Entities
        • Reference
    • The Schema (DDD)
      • Entities
      • Fields
        • String
        • Number
        • Boolean
        • Date & Time
        • Enum & Select
        • Object
        • Array
        • Dictionary
    • Data Drivers
Powered by GitBook
On this page
  1. Backend Module

Rest API

PreviousREST API - Micronaut MongoDBNextBasic CRUD

Last updated 3 years ago

Everything on Gemini is based on the concept of Entity. So also all the REST APIs that Gemini exposes come from an Entity definition.

This chapter is about the APIs exposed by the platform and a general overview of them. But you can easily jump on the to have specific documentation and use cases and come back when you need.

Entity definition
Basic CRUD