Also, can you write/mutate data via GraphQL too or is it read only?
Launch HN: Twenty.com (YC S23) – Open-source CRM
81–90 of 317 posts
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#82We have been using the CRM as early users for the past weeks and are very happy. The Twenty team is super responsive and is shipping features quickly. All the best on the launch, Team Twenty!!
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#83Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#84Very cool product, seems like a good example of an SLC version =) The open-source approach makes a lot of sense especially given the need around integration and customization (& awful developer experience of competition...) Congrats on the launch!
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#85Earlier quoted context omitted.
Salesforce is basically the OS for your company.
What's SAP then?
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#86Rooting for your success, legacy CRMs are without exception just unspeakably bad
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#87> Our tool only does a small part of what big CRM players offer, but we focused on providing a great user experience on the basics, instead of spreading ourselves thin across a vast range of features and delivering them half-heartedly. I like this approach. So much software feels completely half-assed and frustrating to use. Quality can be a real differentiator (it just has to be empathized enough).
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#88Earlier quoted context omitted.
100% - having to submit code server side to just get compilation results is the worst development loop I've ever experienced.
I'm really eager to get to the point where we can work on CRM extensibility and developer experience. We're hoping to bring traditional web development workflows and not re-invent anything. We opted for a multi-tenant infrastructure for the cloud hosted version so there will be some additional challenges to make it work in that context!
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#89How do you get data out of this? I see you mention GraphQL, but is there sample output? Are filters and searches etc. supported? Also, can you write/mutate data via GraphQL too or is it read only?
Right now, you need to provide a JWT token that you can get at login or refresh against a refresh_token (90days expiration). In the future, we plan to also support API keys which would ease a lot headless work.
Regarding filters and search, we have added filtering and search features on app.twenty.com. They are directly leveraging the graphql API.
GQL query example:
``` query ExampleQuery($where: CompanyWhereInput) { findManyCompany(where: $where) { id } } ```
GQL variables:
``` { "where": { "address": { "contains": "example" }, "accountOwner": { "is": { "id": { "equals": "user-id" } } } } } ```
Re: Launch HN: Twenty.com (YC S23) – Open-source CRM
#90Congrats on the launch. My two cents: I work in marketing and CRM for eCommerce lifestyle companies. When I evaluate a CRM I try to understand if it's for sales or eCommerce or both. I see in your docs that you mention that specific point of sales being dominant in CRM so that's a plus. Then I look at if it natively or easily connects to the tools that the company uses. If I'm pointed to using Zapier for connections…