Erik Thiart

Results 17 issues of Erik Thiart

It would be nice to do something like this ``` query getCategoriesAndPostCount { categories { nodes { id name description post_count } } } ``` Any thoughts on how to...

type: feature
component: connections
component: query
scope: performance

Hello, Ii added Open Graph tags to my forum in the headerinclude page, what I am looking for is a way to dynamically populate that open graph description tag like...

Assuming I have the following app directory App -> Controllers -> User -> show.php I want to map it like this: ```PHP $router->get('/', 'index.php'); $router->get('/about', 'about.php'); $router->get('/contact', 'contact.php'); $router->get('/notes', 'notes/index.php')->only('auth');...

```php $router->get('/', 'index.php'); $router->get('/about', 'about.php'); $router->get('/contact', 'contact.php'); $router->get('/notes', 'notes/index.php')->only('auth'); $router->get('/note', 'notes/show.php'); $router->delete('/note', 'notes/destroy.php'); ``` ![CleanShot 2023-10-05 at 11  54 03](https://github.com/bramus/router/assets/9626641/12cbcc27-60cd-4c1d-9f0d-4986d9bc29ed)

Not an issue, more a comment, was not sure where to place the comment. How would you use this library in the wild? As in for what purpose? Sorry for...

Is there .htaccess stuff needed? Since it does not work - also not throwing an error or anything. Difficult to gauge if it is working. this is my index.php file...