The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. Complete User Registration
Public

33
53
33
53
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • GraphQL API Playground
    API Playground
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

  1. Complete User Registration
  2. User

The class User will a detailed view of each user stored in the application. It contains all the user's information.


DataSchema
Get StartedFetch Data
addressagebirthDatecitycountrydistrictemailgenderlastNamelocationnamepasswordphoneNumberpictureusernamewebsitezipCode
Mary Street, 34
39
1980-01-01T14:18:06.336Z
Sao Paulo
Brazil
Vila Mariana
[email protected]
hJhH3GEd3Q
Doe
(0, 0)
John
(undefined)
123456789
anon-250.png
username1
http://my.website.com
12345-678
NotesNotes

Class User: Detailed Information

The following information about the User class of your application:

User The User class is the regular User class from Parse, tuned to contain these custom properties along with the regular ones:

  • name (String): the first name of the User
  • lastName (String): the last name of the User
  • phoneNumber (String): the telephone number of the User
  • location (GeoPoint): the geographic location of the User
  • picture (File): the picture of the User
  • birthDate (Date): the birth date
  • age (Number): the age of the user
  • country (String): the Country in which the User lives in
  • city (String): the City in which the User lives in
  • district (String): the District in which the User lives in
  • address (String): the Address in which the User lives in
  • zipCode (String): the Zip Code in which the User lives in as a formatted string
  • website (String): the website URL for the User as a formatted string
  • gender (Pointer to the Gender class): the Gender of the User

Here is a quick example of how this class will look like:

  • name: "John"
  • lastName: "Doe"
  • phoneNumber: "+55-11-99123-4567"
  • location: -023, -045
  • picture: myPicture.jpg
  • birthDate: "1980-01-01T14:18:06.336Z"
  • age: 18
  • country: "Brazil"
  • city: "Sao Paulo"
  • district: "Vila Mariana"
  • address: "Mary Street, 35"
  • zipCode: "12345-678"
  • website: "http://www.mysite.com"
  • gender: "ABC123"