api-client/store/state.js

26 lines
474 B
JavaScript
Raw Normal View History

2019-11-02 19:50:40 +00:00
export default () => ({
2019-10-24 23:28:08 +00:00
request: {
2019-11-28 15:11:52 +00:00
method: "GET",
url: "https://reqres.in",
path: "/api/users",
label: "",
auth: "None",
httpUser: "",
httpPassword: "",
passwordFieldType: "password",
bearerToken: "",
2019-10-24 23:28:08 +00:00
headers: [],
params: [],
bodyParams: [],
2019-11-28 15:11:52 +00:00
rawParams: "",
2019-10-24 23:28:08 +00:00
rawInput: false,
2019-11-28 15:11:52 +00:00
requestType: "",
contentType: ""
2019-11-21 05:00:15 +00:00
},
gql: {
2019-11-28 15:11:52 +00:00
url: "https://rickandmortyapi.com/graphql",
2019-11-26 20:43:06 +00:00
headers: [],
query: ""
2019-10-24 23:28:08 +00:00
}
2019-11-02 19:50:40 +00:00
});