Questions tagged [backand]

Backand is a backend-as-a-service for AngularJS that provides social login, push notifications, and Ionic integration.

Backand is a Backend-as-a-Service provider focused on AngularJS Applications built on top of relational databases. Backand provides all of the features necessary for a fully functional, secure, and scalable web app, including user and role-based security, automated RESTful-based APIs, custom action triggers, portable Amazon RDS database instances, social media integration, and extensive support for server-side JavaScript code..

Details:

Backand is a Backend-as-a-Service for AngularJS applications. Starting from either an existing database or a schema specification, Backand quickly generates a RESTful API that can be hit from any application using JSON web requests. Backand also provides a library for AngularJS, allowing you to quickly tie Backand's RESTful API to your application's data services, giving you instant database backing. In addition to object management, Backand provides you with a number of features crucial to web-based applications. These includes:

  • User and Role-based Security
  • Dedicated Hosting
  • Custom server-side actions
  • Transaction-level database-triggered actions
  • Integration with Ionic for cross-platform apps
  • Server-side JavaScript execution, allowing for safe and secure third-party integration
  • A portable database, allowing you to quickly change providers
  • Real-time database communication, and web sockets
  • Scalability, both in terms of performance and data management.

To get started, sign up at Backand.com and register your application! The application dashboard contains extensive documentation on every feature available to your app. Backand also maintains an active GitHub page at https://www.github.com/backand, where you can find several tutorials and examples of how to leverage Backand as a tool to accelerate your app's development.

Links:

143 questions
1
vote
1 answer

Backand signup returns XMLHttpRequest cannot load https://api.backand.com/user/signup

Backand return error this when I run the signUp method... Here's the signup method... function signUp(firstName, lastName, email, password) { var canceller = $q.defer(); var cancel = function(reason) { canceller.resolve(reason); …
Ingadi
  • 563
  • 1
  • 7
  • 20
1
vote
1 answer

Querying (and filtering) in a many-to-many relationship in Backand

I'm trying to use the pet-owner example to create some sort of playlist app where a playlist can be shared among different users. I have read both links to understand how many-to-many relationship is created in Backand: Link 1 - Link 2 According to…
1
vote
1 answer

adding related data to backand api

I have a database setup with a couple of different objects. For example lets say I have an object called 'kids' and a related object called 'toys'. Toys has a 'kid' id field which references the kid. What I would like is that when I create a kid I…
Matt Sanders
  • 370
  • 2
  • 12
1
vote
1 answer

How to Create Many to Many Relationship in Backand

My DB has Items and Categories. Each Item will have several Categories. I can create an object and a collection however when added my object(ITEM) I can only add one variable to the collection(Category). I need Many to Many Relationship.
ComWizd
  • 190
  • 5
1
vote
1 answer

Python: Add primary key to MySQL with dataframe.to_sql

My current python code is working when I export the dataframe to MySQL by db4free.net. However, now I need to use another MySQL that is provided by backand, I have seen the database table, 'KLSE' that I created has a primary key problem(honestly, I…
vindex
  • 331
  • 6
  • 17
1
vote
0 answers

How to create related database entries in Backand?

I am currently using Backand with the Ionic Framework. In my model I have table A, which is connected to table B through a one to many relationship (A contains the object field, and B the collection field). What is the proper way to create a related…
1
vote
1 answer

AngularJS : Unknown provider: BackandProvider <- Backand <- Post

I got the following error : Unknown provider: BackandProvider <- Backand <- Post Here is my code : In index.html, I have include backand.min.js : I have a factory…
Romain
  • 13
  • 4
1
vote
1 answer

How to secure backand (back&) on demand action

How can I return a 403 in the on demand actions of backand if the user is not allowed to execute the action?
user1127860
  • 150
  • 2
  • 14
1
vote
0 answers

Cannot insert duplicate key row in object dbo.durados_UserSocial

I'm testing backand platform and got this…
1
vote
1 answer

Backand's API with S3: Upload to region other than US Standard

I would like to use AWS S3 to store my app's user's files securely. I am based in the EU (UK), so my bucket's region is EU (Ireland). Based on the Noterious example in the Backand docs, and the snippet provided by the Backand dashboard, this is my…
StevieP
  • 401
  • 3
  • 16
1
vote
1 answer

Backand- Sign in error with facebook and google

Im developing an app with ionic framework and im using Backand as BaaS, im using the sign in with social accounts service that provides me, but when im trying to sign in with facebook, return this error. The user is not signed up to…
1
vote
1 answer

Update a complex object on Backand using $http PUT

I am using Backand to provide the database and REST api for my Angular app. I am working on a capability for users to make edits to a complex object, which should then be updated on the database. Straightforward enough... The object looks a bit like…
StevieP
  • 401
  • 3
  • 16
1
vote
1 answer

Backand File Upload

I tried to implement the Backand file upload, but I get this error: "The following action: "files" failed to perform: Object reference not set to an instance of an object". I just copy paste the javascript template from the documentation the…
1
vote
1 answer

How can i filter multiple fields with OR in Backand?

i am passing filter value but its always matches both field where i need optional matches for this [ { "fieldName": "Firstname", "operator": "equals", "value": "Megh" }, { "fieldName": "Lastname", "operator": "contains", "value":…
Meghs Dhameliya
  • 2,406
  • 24
  • 29
1
vote
1 answer

How to get a value of a object from its foreign key?

Im using Backand to store my data. I have an object, Events, that references another object, Locations. { "name": "events", "fields": { "eventCommentsId": { "collection": "comments", "via": "eventId" }, …
user2133623
1 2
3
9 10