Download the PHP package aacassandra/parsequent without Composer
On this page you can find all versions of the php package aacassandra/parsequent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download aacassandra/parsequent
More information about aacassandra/parsequent
Files in aacassandra/parsequent
Package parsequent
Short Description Save your time with Parsequent, for CRUD your laravel project using parse rest api
License MIT
Informations about the package parsequent
Parse Eloquent
This is a package for laravel framework especially for CRUD activities. This package uses the eloquent laravel style and doesn't leave the default eloquent style. It's just that this package makes it easier for us to perform CRUD activities without including the model dependency on the associated controller.
Suported Features
- Create
- Read
- Update
- Delete
- Batch
- CountingObjects
- SignIn
- SignOut
- VerifyingEmails
- PasswordReset
- ValidatingSessionTokens
- CreateUser
- With Role [Optional]
- ReadUser
- UpdateUser
- With Role [Optional]
- DeleteUser
- CreateRole
- ReadRole
- UpdateRole
- DeleteRole
Installation in Laravel
This package can be used with Laravel 5 or higher.
-
This package publishes a config/parsequent.php file. If you already have a file by that name, you must rename or remove it.
-
You can install the package via composer:
-
In the \$providers array add the service providers in your config/app.php file:
-
Add the facade of this package to the \$aliases array.
-
You must publish the config. which will later be on the config/parsequent.php config file with:
- Now the Parse Class will be auto-loaded by Laravel.
Object Format
No | Method | Parameters | Options |
---|---|---|---|
1 | Create | className [string], data [array], options [array] | masterKey [bool] |
2 | Read | className ['string], options [array] | objectId [string] where [array] orWhere [array] limit [int] skip [int] order [string] keys [array] include [array] relation [string] masterKey [bool] |
3 | Update | className [string], data [array], options [array] | objectId [string] where [array] orWhere [array] masterKey [bool] |
4 | Delete | className [string] , options [array] | objectId [string] where [array] orWhere [array] masterKey [bool] |
Example
1. Create
To create a new object in Parse. You can follow an example as described below:
The response body is a JSON object containing the objectId and the createdAt timestamp of the newly-created object:
2. Read
After you create an object, you can retrieve its content by calling a method. For example, to retrieve the object we created above:
The response body is a JSON object containing all the user-provided fields, plus the createdAt, updatedAt, and objectId fields:
3. Update
To change the data on an object that already exists, calling method Parse::Update. Any keys you don’t specify will remain unchanged, so you can update just a subset of the object’s data. For example, if we wanted to change the score field on a specific object:
The response body is a JSON object containing just an updatedAt field with the timestamp of the update.
If you want to change multiple lines with conditionals, add a where / orwhere parameter in the options. here we will run 'Batch', to update multiple rows at once.
Because to update multiple rows at once we use 'Batch', as explained on the official page. The response from batch will be a list with the same number of elements as the input list. Each item in the list with be a dictionary with either the success or error field set. The value of success will be the normal response to the equivalent REST command:
4. Delete
To delete an object from Parse Cloud, you can use the Parse::Delete method. Same as the update object method. You can delete a single object or multiple objects at once. To delete a single object, look at the example below:
The response body is a JSON object containing all the user-provided fields, plus the createdAt, updatedAt, and objectId fields:
Whereas to delete multiple objects at once, you can do it like this:
And then the response will be like this
License
This project is licensed under the MIT License - see the LICENSE.md file for details