Modify displayed data for CRM template
Hello, I've started using the CRM dashboard template and I like it a lot. I understand that it fetches the data from a graphsql and the URL is given to schema. However, I can't modify what the actual underlying data is which is getting displayed. Can somebody help me? Thank you very much:)
8 Replies
Hi @levente5241. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
Hmm, I don't know enough to give you a confident answer yet. The extracts provided do not contain specific information on how to modify the underlying data that is displayed in the CRM dashboard template.
However, the CRM application built with refine is highly customizable and adaptable for various business needs. It's an open-source project, so you can freely utilize and customize the source code as you see fit.
For more detailed instructions on how to modify the data displayed in the CRM template, I recommend checking out the refine documentation (https://refine.dev/docs) or the source code on GitHub (https://github.com/refinedev/refine/tree/master/examples/app-crm).
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------
<@602127917358776340> kapa.ai is still learning and improving, please let us know how it did by reacting below
foreign-sapphire•10mo ago
@levente5241 it looks like they are making a call here: https://api.crm.refine.dev/graphql
It looks like you can access the schema and documentation on the graphQL server
I would be very intrested on the database design for this? If a prisma file or something similar could be shared that would be steller.
stormy-gold•10mo ago
Hey @davlaha, let me talk with the team about this. I think we can arrange some docs and designs about the backend 🚀 Thank you for the feedback!
foreign-sapphire•10mo ago
Thanks @aliemirs keep me posted that would be a big help!
other-emerald•5mo ago
@aliemir any update on this?
fair-rose•4mo ago
Any update on this???
sensitive-blue•2mo ago
You can find the schema design by going to https://lucasconstantino.github.io/graphiql-online/
change the end point to api.crm.refine/dev/graphql
add:
{
__schema {
types {
name
kind
fields {
name
type {
name
kind
}
}
}
}
}
click play