createdcreated
createdPLUS
Apr 30, 2023

Q: I want to build a notes style iOS/Android app that users can do the following.

1. Login with Email/Google/Apple id
2. Type and store notes
3. Record audio notes and store multiples of these in each note along with the text
4. Be able to hide/show certain notes based of user settings

Founder Team
Courtney_Hypi

Courtney_Hypi

May 15, 2024

A: 1. All 3 are supported, username/password is also support as well as social login with most OAuth providers like Facebook/Google etc
2. Yes
3. Yes, this would be a matter of creating a model to match what you want for example from your description:
type Note {
entries: [NoteEntry]
}
type NoteEntry {
note: String
file: File
}

you would not need to code this, the visual model builder shown in the screenshot would do something like this for you (we seem to have a mixture of developers and non-developers asking questions, not sure which you are so wrote it as a sample to give you an idea, ignore if it is meaningless jibber to you, the visual editor would allow you to achieve 3)

4. Sure, you can use the fine grained access rights to control visibility and access to any data

Share
Helpful?
Log in to join the conversation
Related questions
View product details