-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.py
80 lines (68 loc) · 1.59 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import os
from flask import Flask
from flask_graphql import GraphQLView
from flask_graphql import render_graphiql
from flask_cors import CORS
import graphene
from mongoengine import connect
from raven.contrib.flask import Sentry
import query
with open('./playground_template.html', 'r') as myfile:
render_graphiql.TEMPLATE = myfile.read()
app = Flask(__name__)
app.debug = True
CORS(app)
Sentry(app)
connect(
os.getenv('GOLOS_DB_NAME', 'Golos'),
username=os.getenv('MONGO_USER'),
password=os.getenv('MONGO_PASSWORD'),
host=os.getenv('MONGO_HOST', 'localhost'),
port=int(os.getenv('MONGO_PORT', 27017))
)
# TODO Default query
default_query = """
{
post(identifier: "@avral/ru-golos-ql-anons-graphql-servera-dlya-golosa") {
title,
body,
thumb,
comments(last: 2) {
body,
created,
parentAuthor,
parentPermlink,
author {
name
}
},
isVoted(account: "seriy"),
netVotes,
author {
name,
balanceValue,
meta {
profile {
profileImage
}
}
},
votes(first: 10) {
edges {
node {
voter {
name,
}
}
}
}
}
}
""".strip()
schema = graphene.Schema(query=query.Queries)
app.add_url_rule('/graphql', view_func=GraphQLView.as_view('graphql',
schema=schema,
graphiql=True,
query=default_query))
if __name__ == '__main__':
app.run()