Giter Club home page Giter Club logo

parse_sdk's Introduction

Parse SDK for Flutter (Under Development)

ParseSDK is a minimal SDK (unofficial) for Parse. As being minimal, ParseSDK provides results in JSON format. This SDK is under development and does not contains all the features you may need hence this SDK is not usable at this time. You can know more about Object Format from the official REST Guide.

Getting Started

Initialize

ParseClient.init(ParseOptions(
      serverUrl: 'https://YOUR.PARSE-SERVER.HERE/parse',
      appId: 'SECRET_APP_ID',
      masterKey: 'SECRET_MASTER_KEY'));

Objects

Object Format

For example, let’s say you’re tracking high scores for a game. A single object could contain:

{
  "score": 1337,
  "playerName": "Sean Plott",
  "cheatMode": false
}

Creating Objects

await ParseObject().create(
  className: 'GameScore',
  data: {"score": 1337, "playerName": "Sean Plott", "cheatMode": false},
);

Retrieving Objects

await ParseObject().get(className: 'GameScore', objectId: 'Ed1nuqPvcm');

The response body is a JSON object containing all the user-provided fields, plus the createdAt, updatedAt, and objectId fields:

{
  "score": 1337,
  "playerName": "Sean Plott",
  "cheatMode": false,
  "skills": [
    "pwnage",
    "flying"
  ],
  "createdAt": "2011-08-20T02:06:57.931Z",
  "updatedAt": "2011-08-20T02:06:57.931Z",
  "objectId": "Ed1nuqPvcm"
}

Queries

Basic Queries

To get objects from a class:

await ParseObject().query('GameScore').get();

The return value is a JSON object that contains a results field with a JSON array that lists the objects.

{
  "results": [
    {
      "playerName": "Jang Min Chul",
      "updatedAt": "2011-08-19T02:24:17.787Z",
      "cheatMode": false,
      "createdAt": "2011-08-19T02:24:17.787Z",
      "objectId": "A22v5zRAgd",
      "score": 80075
    },
    {
      "playerName": "Sean Plott",
      "updatedAt": "2011-08-21T18:02:52.248Z",
      "cheatMode": false,
      "createdAt": "2011-08-20T02:06:57.931Z",
      "objectId": "Ed1nuqPvcm",
      "score": 73453
    }
  ]
}

Query Constraints

await ParseObject()
        .query('Student')
        .where('totalMark', isLessThanOrEqualTo: '50', isNotEqualTo: '35')
        .orderByAscending('roll')
        .limit(20)
        .skip(10)
        .excludeKeys(['physics']).get();

Parse REST API Guide - https://docs.parseplatform.org/rest/guide/

Parse Homepage - https://docs.parseplatform.org/

parse_sdk's People

Contributors

2shrestha22 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

parse_sdk's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.