Is there an alternative way for me to get in touch with you besides email? I would really appreciate the opportunity to have a one-on-one conversation, perhaps through LinkedIn or another platform, so that I can ask some specific questions. I'm currently facing issues implementing it with bolt.new, and as a nocoder, I find it quite challenging. Your video was incredibly helpful in giving me a jumpstart, but now I'm working on a different app that isn't a to-do list, and I'm in need of some additional guidance to navigate these hurdles effectively. Thank you in advance for any assistance you can provide; it would mean a lot to me.
A: Hello, Just shoot an email to us and someone will try to get in touch with you one on one, maybe via a zoom call. But, please note that we can support with your queries related to NoCodeBackend. But Bolt or any other tool is a 3rd party for us. We can not go deep into other tools. Though we will guide you to our max, but please take this into consideration as you may need to get in touch with...
If these features are not supported—filtering, pagination, or table joins—it raises concerns about the scalability and production readiness of the service. Could you clarify how your platform handles these use cases or recommend best practices for managing such limitations?
A: Hi, Filtering is supported. You get a dedicated endpoint just to fetch results based on filters you pass. JOINS: This is in development and will be launched soon. We know the importance of it and understand how it can be critical in fetching combined results. PAGINATION: This is something we will be working on once we build out JOINS.
Hey chris-james Just wanted to share an update that creating JOINS is now possible inside NoCodeBackend. You can check this video for more info: https://www.youtube.com/watch?v=t2Zps53hn9U
That’s awesome. Thanks for the quick reply and it looks like you guys are turning out new features really fast that’s great I would like to suggest making a new API endpoint per join because a user might still need to just get the courses data as well. so maybe course_students should be the join end point.
Thanks a lot for launching this. I had a doubt. In the above comment you've mentioned "You get a dedicated endpoint just to fetch results based on filters you pass". What is the format to pass these filters? I couldn't find any documentation or inputs in the API documentation to pass these.
A: Hi, Yes. A primary key called "id" gets generated automatically for every table. Its of type int and gets auto-incremented. This is used to track the records or fetch id specific records inside a specific table.
1.Why cant in editmodus add the columfield in table not with decimal , only interger is possible.
2. Why cant in editmodus set the value of colum . eg. integer is always (11) & short text always (255) I am want to set this value self...eg. short(50)
3. It is not possible same Target with Database and allow extern Access without secret key?
A: Hi, It will be great if you can check with our support team on your issues. It will be difficult to check your account and discuss any resolutions over this comment section. Email: support@nocodebackend.com
A: Hi, Absolutely, you can do that! You can set up a database in NoCodeBackend, for example, called "auth" with columns like "email" and "password." Once set up, our tool will automatically generate the necessary APIs for you. Finally, integrate your front-end UI (such as a registration form and a login form) with these APIs to register new users or verify existing ones.
If you actually plan to use this with a product, *please* don't just store plain-text usernames and passwords in a database!! Salt and hash the passwords, at least, so that when a breach occurs, the intruders don't get plain-text login credentials.
Q: I just bought tier 2 and i am confused
Is there an alternative way for me to get in touch with you besides email? I would really appreciate the opportunity to have a one-on-one conversation, perhaps through LinkedIn or another platform, so that I can ask some specific questions. I'm currently facing issues implementing it with bolt.new, and as a nocoder, I find it quite challenging. Your video was incredibly helpful in giving me a jumpstart, but now I'm working on a different app that isn't a to-do list, and I'm in need of some additional guidance to navigate these hurdles effectively. Thank you in advance for any assistance you can provide; it would mean a lot to me.
jass_
Jan 12, 2025A: Hello,
Just shoot an email to us and someone will try to get in touch with you one on one, maybe via a zoom call.
But, please note that we can support with your queries related to NoCodeBackend. But Bolt or any other tool is a 3rd party for us. We can not go deep into other tools. Though we will guide you to our max, but please take this into consideration as you may need to get in touch with...
Share NoCodeBackend
Q: Joins, query parameters?
If these features are not supported—filtering, pagination, or table joins—it raises concerns about the scalability and production readiness of the service. Could you clarify how your platform handles these use cases or recommend best practices for managing such limitations?
jass_
Jan 12, 2025A: Hi,
Filtering is supported. You get a dedicated endpoint just to fetch results based on filters you pass.
JOINS: This is in development and will be launched soon. We know the importance of it and understand how it can be critical in fetching combined results.
PAGINATION: This is something we will be working on once we build out JOINS.
Thanks
Share NoCodeBackend
Hey chris-james
Just wanted to share an update that creating JOINS is now possible inside NoCodeBackend. You can check this video for more info: https://www.youtube.com/watch?v=t2Zps53hn9U
That’s awesome. Thanks for the quick reply and it looks like you guys are turning out new features really fast that’s great
I would like to suggest making a new API endpoint per join because a user might still need to just get the courses data as well. so maybe course_students should be the join end point.
Verified purchaser
Hi there,
Thanks a lot for launching this. I had a doubt. In the above comment you've mentioned "You get a dedicated endpoint just to fetch results based on filters you pass". What is the format to pass these filters? I couldn't find any documentation or inputs in the API documentation to pass these.
Hi,
It's there in the API documentation itself. The filters are nothing but the column values you pass.
Q: Does NCBE support auto_increment integers that could serve as primary keys?
jass_
Jan 11, 2025A: Hi,
Yes. A primary key called "id" gets generated automatically for every table. Its of type int and gets auto-incremented. This is used to track the records or fetch id specific records inside a specific table.
Share NoCodeBackend
Q: Colum Fields
Heyo, i buy and use this app with Tier1 to try,
Three Questions ;-)
1.Why cant in editmodus add the columfield in table not with decimal , only interger is possible.
2. Why cant in editmodus set the value of colum .
eg. integer is always (11) & short text always (255)
I am want to set this value self...eg. short(50)
3. It is not possible same Target with Database and allow extern Access without secret key?
Thanks
jass_
Jan 10, 2025A: Hi,
It will be great if you can check with our support team on your issues. It will be difficult to check your account and discuss any resolutions over this comment section.
Email: support@nocodebackend.com
Share NoCodeBackend
Q: Can we create a user auth system with this?
Such as login, registration etc..
jass_
Jan 9, 2025A: Hi,
Absolutely, you can do that! You can set up a database in NoCodeBackend, for example, called "auth" with columns like "email" and "password." Once set up, our tool will automatically generate the necessary APIs for you. Finally, integrate your front-end UI (such as a registration form and a login form) with these APIs to register new users or verify existing ones.
Thank you!
Share NoCodeBackend
Verified purchaser
If you actually plan to use this with a product, *please* don't just store plain-text usernames and passwords in a database!! Salt and hash the passwords, at least, so that when a breach occurs, the intruders don't get plain-text login credentials.