diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-09-25 20:28:58 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-09-25 20:28:58 -0500 |
commit | b1d66f527869236b877207fb617c2660ef68e95e (patch) | |
tree | 34cb6060e0da49f51fbc95449c54d37d948c94f7 /graphql_queries.py | |
parent | 9275df710e578aa0ce67de12a952d76e3f036757 (diff) |
Add edit page command
Diffstat (limited to 'graphql_queries.py')
-rw-r--r-- | graphql_queries.py | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/graphql_queries.py b/graphql_queries.py index 92e3734..6d7094f 100644 --- a/graphql_queries.py +++ b/graphql_queries.py @@ -1,13 +1,21 @@ -import graphql_requests +import custom_requests def get_single_page(page_id): - query = 'query {\npages {\nsingle (id: %s) {\nid\npath\ntitle\ncontent\n}\n}\n}' % page_id - return graphql_requests.send_query(query) + query = 'query ($id: Int!) {\npages {\nsingle (id: $id) {\nid\npath\ntitle\ncontent\n}\n}\n}' + query_vars = {"id": page_id} + return custom_requests.send_query(query, query_vars) def create_page(content, title, path): - query = 'mutation {\npages {\ncreate(\ncontent: "%s"\ndescription: ""\neditor: "markdown"\nisPrivate: false\nisPublished: true\nlocale: "en"\npath: "%s"\npublishEndDate: ""\npublishStartDate: ""\nscriptCss: ""\nscriptJs: ""\ntags: []\ntitle: "%s"\n) {\nresponseResult {\nsucceeded\nerrorCode\nslug\nmessage\n__typename\n}\npage {\nid\nupdatedAt\n__typename\n}\n__typename\n}\n__typename\n}\n}' % ( content, path, title ) - return graphql_requests.send_query(query) + query = 'mutation ($content: String!, $path: String!, $title: String!) {\npages {\ncreate(\ncontent: $content\ndescription: ""\neditor: "markdown"\nisPrivate: false\nisPublished: true\nlocale: "en"\npath: $path\npublishEndDate: ""\npublishStartDate: ""\nscriptCss: ""\nscriptJs: ""\ntags: []\ntitle: $title\n) {\nresponseResult {\nsucceeded\nerrorCode\nslug\nmessage\n__typename\n}\npage {\nid\nupdatedAt\n__typename\n}\n__typename\n}\n__typename\n}\n}' + query_vars = {"content": content, "title": title, "path": path} + return custom_requests.send_query(query, query_vars) def get_tree(): query = 'query {\n pages {\n list (orderBy: PATH) {\n id\npath\ntitle\n}\n}\n}' - return graphql_requests.send_query(query) + query_vars = { } + return custom_requests.send_query(query, query_vars) + +def edit_page(page_id, content, title, path): + query = 'mutation ($id: Int!, $content: String!, $path: String!, $title: String!){\npages {\nupdate(\nid: $id\ncontent: $content\ndescription: ""\neditor: "markdown"\nisPrivate: false\nisPublished: true\nlocale: "en"\npath: $path\npublishEndDate: ""\npublishStartDate: ""\nscriptCss: ""\nscriptJs: ""\ntags: []\ntitle: $title\n) {\nresponseResult {\nsucceeded\nerrorCode\nslug\nmessage\n__typename\n}\npage {\nid\nupdatedAt\n__typename\n}\n__typename\n}\n__typename\n}\n}' + query_vars = {"id": page_id, "content": content, "title": title, "path": path} + return custom_requests.send_query(query, query_vars) |