Andriy Komm
Andriy Komm
I'v just grabbed my fixtures to try out this extension from bundle's DataFixtures to features/fixtures, including parameters.yml and found that they were not loaded. It is possible I will not...
Hey. My solution to the problem was a complete language and DBMS switch. It probably doesn't fit here, but if you want to hear anyway, just ask.
Yeah, typescript and arangodb. Aggregate Root, Value Objects, persistence & model separation all basically out of the box. Document = Aggregate Root and its basically transaction boundary, since you can't...
```ts // type Document not to confuse with general documents in document database. "Document" is purely an example type with some owned type "Page", could be anything type DocumentId =...
I have the feeling, all the blog posts, presentations and/or sliders explicitly and purposely dodge being really practical in terms of DDD, when it comes to explain practical usage of...
The test has all sort of side-effecty things, not sure why (not good if you want to reproduce something), like this: ```ts const postsQuery = trpc.useQuery(['posts.all']); const addPost = trpc.useMutation('posts.add');...
I evaluate the benefit of a library vs. cost of patching and rewiring things to own needs (plus the hidden cost to keep adjusting those adaptations with updates). Based on...
@etienne-dldc even when you navigate client-side, the router still needs to execute the "getServerSideProps" on the server to get the props. Its done via a background fetch to the route,...
@KATT regarding your previous answer, why does nextjs discourage to use `getInitialProps` and recommends using `getServerSideProps` or `getStaticProps` instead? https://nextjs.org/docs/api-reference/data-fetching/getInitialProps
I guess the query hook will only run on client and not server then. When I last read the docs it was not explained, this is just what I think...