Migrating from Airtable to Xano
10:12
14 күн бұрын
Connecting to Streaming APIs
5:24
21 күн бұрын
Improved Workspace Search
2:48
21 күн бұрын
Streaming API Responses with Xano
9:06
Xano R1.60 Release Announcement
2:13
21 күн бұрын
Rate Limit Password Inputs
14:01
21 күн бұрын
Joins vs. Add-ons Explained
7:42
How to Sort and Filter Add-ons
11:26
How to Work with Loops
8:54
Ай бұрын
Realtime (Websockets) in Xano
13:41
Xano R1.59 Release Announcement
1:49
What is a Backend?
1:33
2 ай бұрын
How to Work with Arrays in Xano
11:32
Пікірлер
@JonBanquer
@JonBanquer 5 сағат бұрын
Super helpful tutorial, Chris! I have a question. What if I change my mind about a relation after I create my database. Can I latter change my mind and rework the structure or do I have to start all over again from scratch?
@Imbackoutside
@Imbackoutside 2 күн бұрын
how did you split the text black and make each line an item?
@GTO-HEXSniper1
@GTO-HEXSniper1 3 күн бұрын
So efficient! 🔥
@familiekontoen1955
@familiekontoen1955 3 күн бұрын
Great interview. Often these founder interviews are with people who either have some kind of technical background or other knowledge which helps them get started. About the user journey they would have started with. Honestly you have to make these errors as a beginner to learn what a user journey even is, and second of all what a good user journey is for that specific problem.
@nocodekickstart
@nocodekickstart 4 күн бұрын
Hi. Thanks for this tutorial. I am a new a Xano learner and having trouble with creating a record for a table that one of the fields is object. I searched all over to get help but ai can’t find any help. Can you please make a quick tutorial for this case? It’s a many-to-many relation case and I was able to create a new record but the object remains empty. Please. Thank you.
@nocodebackend
@nocodebackend 4 күн бұрын
Hi! Thanks for reaching out, and we're thrilled to have you in our community! 🌟 We’d be happy to help you with your issue. Could you please post your query in our community forum ( community.xano.com/ ) and include any relevant screenshots or a Loom video detailing what you're doing and the blocker you're facing? This will help us understand your situation better and provide you with the most accurate guidance. Looking forward to assisting you soon! Thank you!
@thejorgemarques
@thejorgemarques 8 күн бұрын
Clear explanation thanks, but which item will it deleted? Will this keep the most recent items in the Database?
@liznocode
@liznocode 5 күн бұрын
It looks like the most recent items are kept in the database. The older ones get deleted.
@familiekontoen1955
@familiekontoen1955 11 күн бұрын
Great video! Really well explained and easy to follow and adapt as a newbie.
@gmcwhinney
@gmcwhinney 11 күн бұрын
Nicely done 🤩 Going down the prompt route to request structured data like this is so flexible and usable across the different models... Genius!
@exlfactory
@exlfactory 11 күн бұрын
Would be great it this could be used with a "bulk Update records" instead of a "For Each loop"+"Edit Record".
@Dmigizi
@Dmigizi 11 күн бұрын
This is awesome. Thanks for the demo.
@oliviermani6928
@oliviermani6928 11 күн бұрын
I don't understand, I made the exact same process but flutterflow doesn't display my data's in a list. It stays with [$.data], is there any other way to do it or maybe the video is too old?
@StoryofToday
@StoryofToday 12 күн бұрын
thank you!
@divyarthsingh589
@divyarthsingh589 12 күн бұрын
Detailed step by step tutorial would be much better, this didn't covered every step and hard to understand for beginners.
@enoalfauchille951
@enoalfauchille951 12 күн бұрын
Question: what if we enter invalid credentials ?
@nocodebackend
@nocodebackend 5 күн бұрын
Hi there! 👋 When using Xano authentication endpoints, if you enter invalid credentials, the system won't generate an authentication token. Instead, the endpoint will return an error. You can choose how to handle this error on the front end according to your needs.
@enoalfauchille951
@enoalfauchille951 5 күн бұрын
@@nocodebackend I mean on WeWeb
@PatrickFAUST
@PatrickFAUST 12 күн бұрын
Hi Lachlan, can you provide to us the JS code ? I don't understand where you found variable Id. ...
@LachlanXano
@LachlanXano 12 күн бұрын
Hey Partick! Apologies I hadn't realised it wasn't included. You can find the javascript code in our community post for this video - search: Connecting to Streaming APIs.
@alexander_world
@alexander_world 13 күн бұрын
I have a table of 4000 embeddings (1536 dimensions), correctly indexed on Inner Product and plain query takes almost 10 seconds. Xano support just tells me: "I have not used pgvector so I'm not sure about that. I do know that storing such large arrays in the database would slow it down exponentially, so you would have to store it elsewhere and then query for them." Sounds like it's just unusable then...
@LachlanXano
@LachlanXano 12 күн бұрын
Hey there, there is actually a unique aspect of the vector indexes with PGvector that requires your Inner Product queries to also contain a ascending sort in order for the index to apply. This is why for similarity search, where you are looking to find the most similar items we recommend using a Negative Inner Product query with a ascending sort. If you would like to return the least similar you can use a inner product query with an ascending sort. The inner product index works for both Negative and standard inner product queries. Please give this a try and you'll find that your queries will be very fast.
@exlfactory
@exlfactory 13 күн бұрын
This is amazing. Next Step would be how to create a chat memory like inhouse or connecting with REDIS.
@CaptureArtist
@CaptureArtist 14 күн бұрын
Hi Chris, thanks for the video I just have a question when i"m testing the /auth/login API in Xano it returns me only the authToken, not the name or the email like you have at 2mn25, Did you know why ?
@nocodebackend
@nocodebackend 5 күн бұрын
Hi there! In the last step of the function stack, Chris is modifying the "user" variable by adding the "authToken" property and removing the "password" property. This updated "user" variable is then returned in the response. Give it a shot, and let us know if that works. 😊
@thejorgemarques
@thejorgemarques 14 күн бұрын
Hi, so in the while loop, you created a variable number outside the loop. Does this mean that when you update the variable inside the loop, automatically the loop considers that internal variable value? Just trying to understand the "intrinsic" of the variable if similar to a i = i + 1. Thank you.
@nocodebackend
@nocodebackend 5 күн бұрын
Hi! Yes, that’s correct. When you create a variable outside the while loop and update it inside the loop, the loop will use the updated value of that variable in each iteration to determine whether to continue looping or not. This means that any changes made to the variable inside the loop will affect the loop’s behavior on subsequent iterations. Just like in your example where you mentioned i = i + 1, if i is used in the loop’s condition, each increment of i inside the loop brings it closer to meeting the condition that ends the loop. So, in the case of a while loop, the variable’s current (updated) value is always considered in the loop’s condition check before each iteration. This allows the loop to function dynamically based on the operations performed inside it.
@shahinhuseynzade7419
@shahinhuseynzade7419 14 күн бұрын
Hi everyone. When I enter JSON, I receive the data with an error code and not the auth token. What is the thing that I am missing?
@nocodebackend
@nocodebackend 5 күн бұрын
Hi there! To help us better assist you with this issue, we recommend posting your question in our community forum (community.xano.com/ ). Please include any relevant screenshots or even a Loom video to give us a clearer picture of what you're experiencing. Alternatively, you can also attend our weekly office hours where you can discuss this directly with our team. Here’s the link to register: go.xano.co/orientation-office-hours.
@BriqueStudios
@BriqueStudios 16 күн бұрын
It’s taken me about 2 weeks to get used to xano. But I am so grateful to have found you all!
@shout-style
@shout-style 16 күн бұрын
Thank you Chris!! Great video with perfect visualisation and simple explanation of a complex topic. Magician!
@marccawood
@marccawood 18 күн бұрын
Where has the Debug Log tab gone in the latest Xano? It's not there 😥
@nocodebackend
@nocodebackend 5 күн бұрын
Hi there! The Debug Log tab has not gone away. To access the Debug Log and other debugging features: Click on "Run & Debug" at the top of the screen inside any function stack view. Click "DEBUG" from the bottom of the Run & Debug panel to open the debugger.
@Prizmstack
@Prizmstack 18 күн бұрын
This is killer!
@Imbackoutside
@Imbackoutside 18 күн бұрын
how can I do this with auth requirements? I keep getting access denied.
@nocodebackend
@nocodebackend 18 күн бұрын
Hi there! The first step that we recommend is to make sure that your API requests include the necessary authentication headers that Xano requires. Next, check your Xano API settings to confirm authentication is required and ensure it's correctly implemented in your Adalo setup. If you're still having trouble, please visit our community forum for more detailed assistance: community.xano.com/ 😊
@BriqueStudios
@BriqueStudios 19 күн бұрын
So can we put the image api onto another api we are already using that also should take in images to be uploaded to a data base?
@nocodebackend
@nocodebackend 18 күн бұрын
Yes, you can integrate the image API with another API you're using. Just ensure both APIs are configured to handle image uploads effectively. For more detailed help, feel free to reach out in our community forum: community.xano.com/
@mdzele
@mdzele 19 күн бұрын
Thank you so much!
@danielhabibi
@danielhabibi 20 күн бұрын
I'm one of those people that's obsessed with keyboard shortcuts so this a dream come true. Thanks, Izzy and team! The first one I tried looking for was a publish command, but couldn't find it. I'd love a keyboard shortcut specifically for that and another for saving and closing a drawer in the function stack. Use case: Quickly fix a mistake an endpoint then Cmd + S (to save and close drawer) then Cmd + F or whatever (to publish with no publish message) 🚀
@GuilledelOlmo-f9k
@GuilledelOlmo-f9k 20 күн бұрын
Incredible! Though one question, how could I implement this in Bubble? I have an AI chatbot currently, but every time I want to visualise a change in my Xano's database, I need to refresh the page. Is there a way to have the changes displayed directly? without need of refresh? And therefore possibility of using this streaming response? Thanks!
@LachlanXano
@LachlanXano 20 күн бұрын
Hey there we have another video "Connecting to Streaming APIs" this will show you how you can work Chatgpt. Currently you'd use some custom javascript on the frontend to parse the response from the Xano API and have it update a variable in your bubble app with the response. In addition to streaming APIs we also have realtime channels available that enable you to send data across to the front-end as Xano receives it, you can leverage the Xano connector plugin to get started with this as well. Eli the plugin creator has a video walking through how you can get started
@xaviera5886
@xaviera5886 20 күн бұрын
No more excuse dont stay on Airtable 🤣 Thanks for this video
@avalons343
@avalons343 20 күн бұрын
Great! Search was kinda frustrating with large projects so this is a very welcome change.
@tomaszwieczorek3310
@tomaszwieczorek3310 20 күн бұрын
great!
@fxbaudonniere
@fxbaudonniere 21 күн бұрын
It's incredible, the productivity of working with Xano is going through the roof. Many thanks to the whole team!
@zswag007
@zswag007 21 күн бұрын
@xaviera5886
@xaviera5886 21 күн бұрын
Awesome !!!
@ashleigh5910
@ashleigh5910 21 күн бұрын
Awesome as always! 🎉 thanks for the updates
@BriqueStudios
@BriqueStudios 21 күн бұрын
I have a list of categories and I want to list services associated with that category on another page. How do I do this??
@senioferreira1506
@senioferreira1506 21 күн бұрын
nices updates 👏
21 күн бұрын
I want to use Stripe on Flutterflow but using Xano and not Firebase. I create a mobile application
@nocodebackend
@nocodebackend 21 күн бұрын
We have a detailed tutorial video that covers how to set up Stripe in your application through Xano. This should give you all the information you need to get started. docs.xano.com/building-features/payments If you run into any issues or have questions after watching the video, please don't hesitate to post them in our Community Forum. Please include any screenshots or a Loom video of where you're getting stuck to help us understand your problem and provide specific solutions. Here’s the link to our Community Forum: community.xano.com/
@Imbackoutside
@Imbackoutside 22 күн бұрын
I've tried this about 3 times now. Im getting stuck.
@nocodebackend
@nocodebackend 21 күн бұрын
I'm sorry to hear that you're encountering issues! To assist you better, could you please post your question in our Community Forum detailing exactly where you're getting stuck? Including a screenshot or even a Loom video of your process in your post would be incredibly helpful. This way, we can see exactly what's happening and provide you with more targeted advice. Here's the link to the forum: community.xano.com/
@Imbackoutside
@Imbackoutside 18 күн бұрын
@@nocodebackend thanks! I actually stayed determined and got through it all. It was easier every time.
@BriqueStudios
@BriqueStudios 23 күн бұрын
How do we use this with Flutterflow?
@Dmigizi
@Dmigizi 23 күн бұрын
Awesome tutorial. Thanks for sharing.
@BriqueStudios
@BriqueStudios 23 күн бұрын
how do we make this work on flutterflow?
@nocodebackend
@nocodebackend 21 күн бұрын
Check out this guide on connecting Xano with FlutterFlow: www.xano.com/connect/flutterflow/
@BriqueStudios
@BriqueStudios 23 күн бұрын
What if I want to query based on categories from another DB?
@nocodebackend
@nocodebackend 21 күн бұрын
To query all records based on categories from another database in Xano, you can use the Query All Records function with joins and filtering. For more detailed help, we recommend posting your question in our Community forum. Our community is very active and helpful, and you’re likely to get a more comprehensive response there. Here's the link to the forum: community.xano.com/
@CameronBXano
@CameronBXano 25 күн бұрын
Just wanted to comment as the video author that a background task isn't wholly necessary, and this can be built many different ways! I'd recommend exploring background tasks, but also building out logic on each attempt that checks if the timestamp has passed the timeout threshold. This video covers all of the neat features Xano has to offer, so have fun building and experimenting!
@alexxlem
@alexxlem 25 күн бұрын
That’s exactly what I was thinking.. creating the logic on login attempt instead of on background tasks. Great video by the way, thank you!! One quick piece of feedback: you're speaking and clicking a bit quickly, which might make it difficult for beginners to follow.
@CameronBXano
@CameronBXano 24 күн бұрын
@@alexxlem Thanks for the feedback! I'll try to work on that pacing! May have to dial back on the coffee! ☕
@_brian_kiptoo
@_brian_kiptoo 25 күн бұрын
the video is about caching yet ...only explained for 2 minutes for a 10 minute video.. Please explain for longer..we need this tutorials
@BriqueStudios
@BriqueStudios 26 күн бұрын
I have one list of categories that will load into another list of services that will then display a single document; it will work in one instance perfectly fine based on an object id then not load and fail within the single document in the very next instance.. then I get it working again. It only works one time then stops.. Please help.
@MTGameMaker
@MTGameMaker 26 күн бұрын
i managed to create the chat conversation using Gemini Ai and did some changes to the tutorial just to make it work because google Ai has a different CURL
@MTGameMaker
@MTGameMaker 26 күн бұрын
thank you sooooooooooooooooooooooooooooooooooooooooooooooooooooo much for this great tutorial amaaaaazing
@JayMutzafi
@JayMutzafi Ай бұрын
you are also not showing what variable you pass to the API action and the "result" of the upload action isn't showing as an option to select anywhere
@nocodebackend
@nocodebackend 26 күн бұрын
Thanks for your question! Please post your detailed query (including screenshots if possible) on our community forum (community.xano.com/) for more specific help. This video was created a year ago, and there might be updates to FlutterFlow since my video was made.