W
Wasp-lang•2mo ago
varo

How to correctly use queries

as title says, I've been trying to implement some queries to know how everything works, but having some doubts: - I want to fetch some files located on the server side, what's the recommended path to locate these files? it works, but process.cwd() returns me .wasp/out path and idk if I should keep it or change to @src/server/files or .wasp/out/server/src - Are operations on openSAAS used like queries.ts? there's no difference right? - it works for me without using entities, if I use them, it gives me unexpected token (I'm using them wrong ik), should I figure out and use them? Maybe if I'm handling with files and not objects in some db it's different
7 Replies
MEE6
MEE6•2mo ago
Wohooo @varo, you just became a Waspeteer level 1!
kapa.ai
kapa.ai•2mo ago
Hi @varo. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Sure, I can help clarify how to use queries in Wasp. 1. File Location: In Wasp, you typically import your queries from the wasp/client/operations directory. For example, if you have a query called getAllTasks, you would import it like this:
import { getAllTasks } from 'wasp/client/operations'
import { getAllTasks } from 'wasp/client/operations'
Then, you can call it directly in your code. The actual implementation of the query should be in the src/queries.js or src/queries.ts file, depending on whether you're using JavaScript or TypeScript. You declare the query in your .wasp file and point to its implementation in the src/queries.js or src/queries.ts file. For example:
query getAllTasks {
fn: import { getAllTasks } from "@src/queries.js"
}
query getAllTasks {
fn: import { getAllTasks } from "@src/queries.js"
}
source (https://wasp-lang.dev/docs/data-model/operations/queries#working-with-queries) 2. OpenSaaS Operations: The operations in OpenSaaS should work the same way as in any other Wasp project. You declare them in your .wasp file and implement them in your src/queries.js or src/queries.ts file. There should be no difference in how you use them compared to other Wasp projects. 3. Using Entities: Entities are typically used when you're working with data from a database. If you're just working with files and not database objects, you might not need to use entities. However, if you do need to use entities, you would declare them in your query like this:
query getAllTasks {
fn: import { getAllTasks } from "@src/queries.js",
entities: [Task]
}
query getAllTasks {
fn: import { getAllTasks } from "@src/queries.js",
entities: [Task]
}
Then, in your query implementation, you would have access to the entity's Prisma API through the context argument:
export const getAllTasks = async (args, context) => {
return context.entities.Task.findMany({})
}
export const getAllTasks = async (args, context) => {
return context.entities.Task.findMany({})
}
source (https://wasp-lang.dev/docs/data-model/operations/queries#using-entities-in-queries) If you're getting an unexpected token error when using entities, it might be because there's a syntax error in your code. If you could provide more details about the error, I might be able to help you troubleshoot it. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @varo, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
varo
varo•2mo ago
@kapa.ai , what's the recommended path to keep files in a server that are going to be fetched but do not want to be accesible directly from the user?
kapa.ai
kapa.ai•2mo ago
Let me check the knowledge base for you. One moment! :books: ---------------------- In Wasp, there is currently an open discussion about supporting static assets in the server side of a Wasp project. The idea is to have a special directory, something like server/assets/, and whatever you put there, Wasp would ensure to copy to the built server code while doing wasp build. This would allow you to store files that can be accessed directly from the server code (loaded as a file and similar), but not directly by the user. However, this feature is not yet implemented. source (https://github.com/wasp-lang/wasp/issues/609) For now, you can store your files in the src directory of your Wasp project and access them from your server code. However, these files would not be included in the final build that gets deployed, so they would not be accessible in production. If you need to store files that should be accessible in production but not directly by the user, you might need to consider other options, such as storing the files in a database or using a cloud storage service like AWS S3. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @varo, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
varo
varo•2mo ago
so my server statuc files may disappear when I deploy my server? @kapa.ai
kapa.ai
kapa.ai•2mo ago
Let me check the knowledge base for you. One moment! :books: ---------------------- Yes, currently in Wasp, files that are not part of the source code (like static files you put in the src directory) are not included in the final build that gets deployed. This means that if you put static files in your src directory and access them from your server code, they will be accessible locally, but they will not be accessible when you deploy your app. This is because the TypeScript compiler, which Wasp uses to build the server code, does not include non-code files in the final build. There is an open discussion about adding support for including static assets in the server build, but this feature is not yet implemented. source (https://github.com/wasp-lang/wasp/issues/609) If you need to include static files in your deployed app, you might need to consider other options, such as storing the files in a database or using a cloud storage service like AWS S3. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @varo, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
miho
miho•2mo ago
One way I can think of keeping the static files with you is to maybe store them on S3 or some other external storage. And when you need them, download them to a location accessible to the server and then serve the to the user in any way you like 🙂 (using the express static middleware, returning it as some sort of JSON response etc.)
Want results from more Discord servers?
Add your server