Drew Baker

Results 178 comments of Drew Baker
trafficstars

@woodreamz I support you. You're correct. Anyone who's tried to actually build a website and scale an SVG knows what you're asking for is correct.

Another idea: Have the password be a required input in the query and used the same way FORMAT is used on a field? ``` query post($id: ID!, $password: String!) {...

For others trying to handle this in the meantime, I wrote a custom WP-JSON endpoint to do this with REST. http://domain.com/wp-json/custom/get-stage/?path=page-path-here&password=12345 ``` /* * Register custom API endpoint */ function...

I'd vote option 2 as the one that makes the most sense, but not sure how that would work with `excerpt(format: RAW)` would you need `excerpt(format: RAW_FROM_CONTENT)`?

I would second that `orderby` has issues. It doesn't work at all when doing a meta query for example. We use a custom meta field called `developer_id` to fetch specific...

As someone that has built a whole company on building WordPress sites and plugins I’d like to say that abstracting away WordPress is why I love this plugin. Now none...

That gist is for older version of WP-GQL I think, this is an updated version that we use all the time: https://github.com/funkhaus/stackhaus-backend/blob/master/functions/gql-functions.php#L32-L146

In your themes functions.php file

Pretty sure this is related to #322 and that thus module needs to be updated to use fetch() behind the scenes.

The more I use Apollo with Vue, the more frustrated I am with it. It feels like it's built by React devs, not Vue devs. Just so verbose and complicated,...