Josh Crawford

Results 1030 comments of Josh Crawford

@ursbraem Are there any sort of changes you're making that seem to be triggering the navigation re-generation?

Yeah, the sporadic nature of this change is pretty frustrating. I can't seem to figure out how to trigger it. A `project-config/rebuild` doesn't seem to trigger it for me either...

Okay, I think I may have gotten to the bottom of this. CP Nav was running too early in the process, before an authenticated user was available, which meant a...

@pimago I would just ensure that you pull down the database from production, then run `./craft project-config/rebuild` locally, just to ensure you're local files are all okay. So the duplicates...

@ursbraem Just wanted to check you did a project config rebuild from production before making a change? Just to ensure everything is in sync. The `sortOrder` changing when you add...

Ah, gotcha - so diffs would be normal. No need to follow my instructions before (which was pulling the production database locally, then running `./craft project-config/rebuild` to ensure your local...

Fixed in [4.0.7](https://github.com/verbb/cp-nav/releases/tag/4.0.7)

This is actually a mistake in the docs, sorry! Comments don't have a `uri` or `slug` so they can't be queried by them.

Querying for pending comments should be fine: ```gql { comments(status: "pending") { uid id } } ``` The issue is, comments don't have a value for `uri` or `slug`. Do...

I'll see what I can do about that. And yes, we can't modify the properties available on an `EntryInterface`. You could use the `relatedToEntries`. ```gql { comments(status: "pending") { uid...