Posts
Chat
Members
Info
September 6, 2019 at 3:33pm
Trying out fakeql, it's pretty awesome!
Was wondering if it's possible to add GraphQl constraints to the definition somehow?
Like you would in the SDL: String! or allProjects: [Project!]!
September 19, 2019 at 8:41am
Sorry for the late reply. Somehow Spectrum Chat is really bad at notifying me. In FakeQL everything is detection based. So if you have one entry where a field is missing, it will automatically become a non mandatory field. And for example if there are only Strings in a certain field, it will be created in the schema as a String.
September 20, 2019 at 3:18pm
And another one: is there a timeline on when it could be open sourced? I'm thinking that fakeql could be awesome together with cypress to do frontend testing in one go. Wouldn't want to rely on the data coming from a SaaS however and would rather want to bake it into the project itself, so I can run it on a CI.
Or is this it? https://github.com/FrediBach/FakeQL
October 10, 2019 at 10:07am
I'm having problems faking authorization. The
login
mutation returns an empty string for some reason.November 18, 2019 at 2:55pm
May 11, 2020 at 2:20am
curl --location --request POST '
https://fakeql.com/rest/c86953c5fe88ba60e12e33c0b4dbe202/users
' \ --header 'Content-Type: application/json' \ --data-raw '{ "firstname": "Jag", "age": 33 }'
GET request works fine