 안녕하세요 햅뽀이입니다. 새해니까!! 올해도 열심히 개발 공부를 하겠다는 목표를 세웠습니다. 일단 Nomad Coders Academy에 있는 무료 강의들 중에 관심 있었던 것들 부터 들어 볼까 합니다. 그 중의 첫번째가 GraphQL입니다. 동영상 강의 자체는 모두 들었고, 실제로 개발하면서 정리하는 시간을 가져보려 합니다. 강의 위치 : https://academy.nomadcoders.co/  ___ ### 샘플이자 GraphQL의 거의 모든 것을 대표하는 소스입니다. ``` const GraphQLServer = require("graphql-yoga").GraphQLServer; const datas = [ { id: 0, name: "Name1", data: "Data1" }, { id: 1, name: "Name2", data: "Data2" } ]; const typeDefs = ` type Data { id:Int! name:String! data:String! } type Query { getData ( id:Int ): [Data]! }`; const resolvers = { Query: { getData: function(_, _a) { var id = _a.id; return datas.filter(function(data) { return data.id === id; }); } } }; const server = new GraphQLServer({ typeDefs: typeDefs, resolvers: resolvers }); server.start(function() { return console.log("Server is running on localhost:4000"); }); ``` 이 소스에 거의 모든 것이 들어 있습니다.(제가 배운 부분까지는 말이죠!) - datas : 데이터 리스트(DB로 생각하시면 됩니다.) - typeDefs : GraphQL에 데이터형태와, 쿼리시 조회 할 수 있는 형태 등을 정의 합니다.(텍스트 방식입니다.) - resolvers : typeDefs에 정의된 내용을 호출 할 때 resolvers에 정의된 함수를 거쳐서 결과 값을 보내줍니다. - server : GraphQLServer 인스턴스를 생성하고, 정의된 typeDefs, resolvers를 설정합니다. - server.start() : GraphQL 서버를 시작합니다. 다 끝!!?? 이정도만 해놓고 실행을 해도, 엄청난 결과물을 확인 하실 수 있습니다. ___ ##### 서버를 시작하고... - http://localhost:4000/ 로 접속을 합니다. - 그러면 아래와 같은 화면(Play Ground)가 나타납니다. - 그리고 제가 등록한 소스에 정의된 대로 쿼리를 해볼 수 있도록 기능을 제공해줍니다.  ##### 조회 문법 ``` // 조회 문법 query{ getData(id:0){ name } } ``` ##### 그리고.. 결과물 ``` // 결과물 { "data": { "getData": [ { "name": "namename" } ] } } ``` 일단 여기까지는 따라와 오셔도 됩니다. 그리고 작성된 소스, 쿼리 문법, 결과물을 분석해 보겠습니다. #### typeDefs - 먼저 typeDefs에서, Data를 정의합니다. Data는 3개의 속성을 가집니다. `id, name, data` 이고 각각 `Int, String, String` 로 정의한다는 의미입니다. - 그리고 Query에서는 조회하는 명령어를 입력하고, 입력 할 수 있는 parameter들, 그리고 리턴 결과 형태를 표시합니다. - 조회하는 명령어는 **getData**입니다. 그리고 입력 할 수 있는 parameter는 `id, name, data` 세 개가 입력 가능하고 리턴 형태는 `Data` 형태를 가집니다. Data 형태란 바로 위에 typeDefs에 정의한 그 Data를 말하는 것이지요!! #### resolvers - typeDefs에서 정의한 Query 였던 getData를 입력 받으면 실제로 내부적으로 작동하는 함수를 가집니다. - getData와 Parameter을 받으면 _a 변수로 해당 파라미터를 받을 수 있습니다. - _a를 통해 전달 받은 Parameter id 값으로, DB로 부터 해당 id값을 가지는 Object를 return 하게 되는 간단한 함수입니다. #### 조회문법 - 정의된 getData를 입력하고() 안에 Parameter을 입력합니다. 여기서는 id값으로 0을 입력하였습니다. - 그리고 { name } 부분은 결과물을 보여 줄때 Data Object의 어떤 변수 값만 보여줄 지를 설정할 수 있습니다. - 현재는 name만 입력을 했지만, {name, data}를 입력하면 결과물에 name, data를 모두 보여주게 됩니다. ___ 예전에 @anpigon님이 끝내주는 기술이라고 얼른 배우라고 했는데, 이제서야 배우게 됐네요. 그리고나서 들었던 생각이 ... 왜 이제야 이걸 알았을까?? 였습니다. 정말 직관적이고, 간단하고, 서버 설정도 필요 없습니다. 앞으로는 정말 api 서버는 무!조!건! GraphQL 입니다!!! ### 끝~~~~~~내주는 이 GraphQL..!!!! 한번 써보시지 않겠습니까? ^^
author | happyberrysboy |
---|---|
permlink | graphql-1 |
category | sct |
json_metadata | {"tags":["sct","sct-kr","sct-dev","bs","mini","zzan","kr-dev","dblog","palnet"],"users":["anpigon"],"image":["https://cdn.steemitimages.com/DQmQfLngNsvtMszhqdiGXkBjYQquKCRucxTXrNBjVjG1991/image.png","https://cdn.steemitimages.com/DQmNpg2UGhNibzGLQeTYd922ExvJRja3NBbTGTmWdcNApmP/image.png","https://cdn.steemitimages.com/DQmeuNAtsHSi5kQPi4gkVdVL7fiAVY1anKTmzxf951PxSuD/image.png"],"links":["https://academy.nomadcoders.co/","http://localhost:4000/"],"app":"steemcoinpan/0.1","format":"markdown","canonical_url":"https://www.steemcoinpan.com/@happyberrysboy/graphql-1"} |
created | 2020-01-07 11:52:33 |
last_update | 2020-01-07 11:52:33 |
depth | 0 |
children | 7 |
last_payout | 2020-01-14 11:52:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 16.079 HBD |
curator_payout_value | 12.917 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,139 |
author_reputation | 314,484,142,656,697 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,138,570 |
net_rshares | 102,382,273,436,024 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mangou007 | 0 | 10,873,016,285 | 7.28% | ||
gerber | 0 | 106,704,004,708 | 2% | ||
daan | 0 | 152,520,281,048 | 4% | ||
slowwalker | 0 | 990,464,008,575 | 15% | ||
exyle | 0 | 352,889,166,523 | 4% | ||
kopasi | 0 | 45,544,583,491 | 100% | ||
bert0 | 0 | 30,242,382,334 | 7.28% | ||
netaterra | 0 | 189,471,564,358 | 15% | ||
oldstone | 0 | 775,843,282,060 | 15% | ||
jack8831 | 0 | 30,535,874,357 | 50% | ||
freshfund | 0 | 56,202,408,903 | 100% | ||
megaspore | 0 | 684,142,258,547 | 100% | ||
steemitboard | 0 | 15,314,722,080 | 1% | ||
msg768 | 0 | 2,551,737,616 | 5% | ||
happyberrysboy | 0 | 32,100,455,150 | 100% | ||
rocksg | 0 | 134,375,551,066 | 100% | ||
drag33 | 0 | 240,000,755,610 | 100% | ||
jhy2246 | 0 | 23,891,687,821 | 10% | ||
lotusofmymom | 0 | 8,176,065,580 | 18% | ||
ai-channel | 0 | 373,713,065,453 | 27% | ||
bizventurer | 0 | 23,479,392,135 | 100% | ||
jamjamfood | 0 | 72,905,988,229 | 16% | ||
stylegold | 0 | 651,802,993 | 100% | ||
bree1042 | 0 | 40,280,402,828 | 20% | ||
virus707 | 0 | 4,427,793,787,832 | 25% | ||
realmankwon | 0 | 43,035,527,591 | 100% | ||
insiders | 0 | 205,577,058 | 69% | ||
skuld2000 | 0 | 321,409,891,018 | 100% | ||
beoped | 0 | 77,115,695,854 | 31% | ||
techken | 0 | 0 | 0.14% | ||
becometheartist | 0 | 33,819,828,432 | 25% | ||
zinasura | 0 | 78,012,684,651 | 10% | ||
hope-on-fire | 0 | 342,774,723,789 | 86% | ||
jesus.christ | 0 | 453,605,735 | 5% | ||
taylor.swift | 0 | 214,218,093 | 57% | ||
imbritish | 0 | 90,108,012 | 38% | ||
jjg | 0 | 1,710,634,184 | 100% | ||
cryptopassion | 0 | 1,560,907,767,672 | 25% | ||
ukk | 0 | 511,856,443,959 | 100% | ||
abcbullion | 0 | 404,182,421 | 79% | ||
steemstatistics | 0 | 197,814,704 | 43% | ||
rocky1 | 0 | 2,987,143,055,399 | 3% | ||
accelerator | 0 | 19,381,866,252 | 1.4% | ||
june0620 | 0 | 70,503,739,168 | 5% | ||
arfa07 | 0 | 222,767,815 | 100% | ||
jsquare | 0 | 1,648,769,390,241 | 41% | ||
flamingirl | 0 | 87,371,555,243 | 7.28% | ||
blockbrothers | 0 | 58,835,402,690 | 2% | ||
y-o-u-t-h-m-e | 0 | 1,195,824,177,061 | 40% | ||
ioioioioi | 0 | 317,375,433,338 | 30% | ||
jim888 | 0 | 97,736,894,123 | 16% | ||
goodhello | 0 | 337,527,425,074 | 100% | ||
rbaggo | 0 | 11,443,026,568 | 100% | ||
jacobyu | 0 | 597,382,621,861 | 100% | ||
philhyuntd | 0 | 14,060,509,736 | 50% | ||
gfriend96 | 0 | 22,453,477,239 | 100% | ||
calist | 0 | 23,924,587,039 | 100% | ||
fenrir78 | 0 | 140,071,216,096 | 100% | ||
cadawg | 0 | 6,049,493,351 | 1.4% | ||
photoholic | 0 | 763,249,208,853 | 15% | ||
happy-soul | 0 | 24,079,629,897 | 3% | ||
onehand | 0 | 1,582,034,615 | 20% | ||
bozz | 0 | 4,093,049,477 | 1% | ||
jjal | 0 | 3,583,137,926 | 100% | ||
kitalee | 0 | 12,776,127,932 | 50% | ||
futurecurrency | 0 | 17,835,487,818 | 42% | ||
maikuraki | 0 | 3,508,490,094 | 25% | ||
joeypark | 0 | 3,058,276,153,416 | 100% | ||
leeyh | 0 | 539,166,571,818 | 35% | ||
earlmonk | 0 | 448,821,855 | 4% | ||
rikaz87 | 0 | 3,138,998,061 | 100% | ||
hermes-k | 0 | 60,929,669,334 | 100% | ||
josevas217 | 0 | 1,949,952,967 | 4.36% | ||
bestboom | 0 | 6,389,799,678 | 2% | ||
jaephil | 0 | 541,642,710 | 100% | ||
stmdev | 0 | 145,637,559 | 1% | ||
naha | 0 | 55,391,891,481 | 10% | ||
jungch98 | 0 | 7,476,016,150 | 100% | ||
therising | 0 | 2,975,564,958,486 | 10% | ||
angelinafx | 0 | 28,735,352,150 | 8.4% | ||
tresor | 0 | 20,263,255,124 | 7.28% | ||
jaydih | 0 | 616,266,233,695 | 18% | ||
powerguy | 0 | 272,727,406,745 | 35% | ||
andrewma | 0 | 0 | 0.2% | ||
morellys2004 | 0 | 7,108,294,659 | 100% | ||
brightmoon | 0 | 548,156,589 | 100% | ||
kimseun | 0 | 118,512,756,063 | 18% | ||
wisdomandjustice | 0 | 756,440,196,608 | 15% | ||
kcc | 0 | 856,608,726,209 | 100% | ||
aro.steem | 0 | 178,584,847 | 1.6% | ||
kibumh | 0 | 183,552,311,047 | 50% | ||
anpigon | 0 | 255,231,451,570 | 100% | ||
china-mobile | 0 | 40,622,905 | 5% | ||
luminaryhmo | 0 | 788,232,868 | 100% | ||
newbijohn | 0 | 38,348,905,546 | 100% | ||
koyuh8 | 0 | 858,837,669,442 | 100% | ||
sumomo | 0 | 3,889,747,429 | 100% | ||
kanadaramagi123 | 0 | 80,699,447,398 | 18% | ||
suonghuynh | 0 | 1,309,145,879,641 | 8.4% | ||
winston80 | 0 | 1,193,216,088 | 100% | ||
loveecho | 0 | 17,395,052,671 | 18% | ||
tiffany4ever | 0 | 2,680,113,212 | 100% | ||
angelslake | 0 | 30,736,937,459 | 18% | ||
dailyprobot | 0 | 1,946,867,727 | 10% | ||
smartvote | 0 | 613,990,148,469 | 8.4% | ||
glory7 | 0 | 160,613,063,500 | 100% | ||
volare511 | 0 | 549,074,425 | 50% | ||
jayplayco | 0 | 97,157,502,297 | 21.25% | ||
dlike | 0 | 131,001,944,737 | 1.9% | ||
triptolemus | 0 | 7,548,990,584 | 2% | ||
wordit | 0 | 29,814,036,492 | 18% | ||
stimcity | 0 | 332,665,346,319 | 100% | ||
sj-jeong | 0 | 936,317,771,208 | 18% | ||
kr-coffeesteem | 0 | 3,935,311,654,877 | 100% | ||
wondumyungga | 0 | 65,864,034,890 | 18% | ||
rtytf2 | 0 | 7,462,953,149 | 100% | ||
laissez-faire | 0 | 71,477,446 | 100% | ||
aquawink | 0 | 75,716,412,776 | 18% | ||
merlin7 | 0 | 93,700,113,788 | 9% | ||
memeteca | 0 | 1,461,499,546 | 7.28% | ||
ringit | 0 | 50,530,944,567 | 18% | ||
coreabeforekorea | 0 | 573,673,489,007 | 18% | ||
talkative-bk | 0 | 735,725,170,402 | 18% | ||
swiftcash | 0 | 22,455,019,018 | 5% | ||
swiftbot | 0 | 579,976,065 | 5% | ||
cgbernardo | 0 | 108,007,449,325 | 80% | ||
kakakk | 0 | 2,968,623,952 | 30% | ||
primeradue | 0 | 1,873,132,951 | 2% | ||
untold | 0 | 4,981,278,864 | 100% | ||
angdatingdaan | 0 | 3,006,152,039 | 1% | ||
skymin | 0 | 166,892,406,035 | 100% | ||
sklara | 0 | 40,928,614,277 | 30% | ||
kggymlife | 0 | 2,539,118,398 | 20% | ||
kryptogames | 0 | 18,268,106,679 | 3% | ||
j-car | 0 | 1,058,258,667,648 | 54% | ||
herbncrypto | 0 | 8,291,171,367 | 100% | ||
blender.steemit | 0 | 549,978,563 | 50% | ||
minigame | 0 | 3,366,845,690,151 | 8% | ||
whatdidshewear | 0 | 150,960,113,460 | 18% | ||
plebtv | 0 | 552,931,952 | 100% | ||
kr-fund | 0 | 8,002,303,719 | 52% | ||
jjm13 | 0 | 23,433,782,593 | 25% | ||
iran12 | 0 | 0 | 5% | ||
sjgod4018 | 0 | 123,237,001,281 | 18% | ||
mustard-seed | 0 | 66,156,476,701 | 18% | ||
jcarvoting | 0 | 467,218,420 | 12.3% | ||
abojasim880 | 0 | 423,613,446 | 100% | ||
maxkim | 0 | 847,970,673 | 100% | ||
wacol413 | 0 | 5,900,298,519 | 33% | ||
axeminni | 0 | 0 | 4% | ||
sct.tom | 0 | 7,837,217,977 | 50% | ||
sct.biz | 0 | 19,833,554,178 | 100% | ||
sct.adv | 0 | 28,422,588,354 | 100% | ||
fsm-liquid | 0 | 10,239,404,758 | 4% | ||
sct.dean | 0 | 909,536,577 | 60% | ||
feelsogood.cur | 0 | 2,125,375,066 | 100% | ||
jstory | 0 | 3,193,734,281 | 40% | ||
darc | 0 | 842,562,576 | 100% | ||
korea.test | 0 | 551,079,215 | 100% | ||
wonsama.sct | 0 | 1,029,677,959 | 100% | ||
moonhodler | 0 | 1,299,068,334 | 14% | ||
flyingbear | 0 | 19,951,771,375 | 100% | ||
sct.min | 0 | 24,624,064,902 | 100% | ||
team1p | 0 | 4,512,099,525 | 100% | ||
triplea.bot | 0 | 1,678,408,751 | 4% | ||
steem.leo | 0 | 57,256,789,671 | 1.9% | ||
cn-zzang | 0 | 278,556,792 | 2% | ||
realmankwon.scot | 0 | 16,767,727,675 | 100% | ||
newiz.sct | 0 | 3,484,440,517 | 100% | ||
leo.voter | 0 | 219,647,939,762 | 0.78% | ||
cn-sct | 0 | 1,964,329,838 | 2% | ||
windmolen | 0 | 1,791,606,564 | 100% | ||
perrymine | 0 | 1,481,846,594 | 18% | ||
freegon.sct | 0 | 36,419,729,747 | 100% | ||
addax | 0 | 1,223,235,666 | 25% | ||
mapxv | 0 | 10,776,270,953 | 1.19% | ||
tina-tina | 0 | 763,418,211 | 100% | ||
cubot.sct | 0 | 484,022,460 | 100% | ||
sct.krwp | 0 | 37,722,235,333,183 | 56.66% | ||
maxuva | 0 | 751,376,244 | 1.4% | ||
maxuvb | 0 | 773,631,227 | 1.4% | ||
maxuvc | 0 | 811,980,753 | 1.4% | ||
maxuvd | 0 | 564,558,881 | 1.4% | ||
maxuve | 0 | 3,938,904,886 | 0.98% | ||
soo002 | 0 | 320,789,774 | 100% | ||
sqljoker | 0 | 29,156,097 | 2% | ||
therealyme | 0 | 9,109,777,571 | 3.6% | ||
jaykayw | 0 | 41,163,053,860 | 18% | ||
khalsct | 0 | 899,152,238 | 75% | ||
kopasi.sct | 0 | 17,280,098,241,203 | 100% | ||
thebilpcointrain | 0 | 3,117,042 | 1% | ||
bilpcoin.pay | 0 | 87,970,914 | 1% | ||
roseofmylife | 0 | 201,700,854,372 | 15% | ||
dblogbasicincome | 0 | 75,634,121 | 7% | ||
we-together | 0 | 785,584,978,401 | 15% | ||
tongchat27 | 0 | 363,654,708,736 | 100% | ||
dblogvoter | 0 | 83,110,031 | 2.1% | ||
tonystarkalive | 0 | 28,797,109 | 2% | ||
reward.tier3 | 0 | 1,685,597,427 | 100% | ||
gmlrecordz | 0 | 4,829,731,656 | 50% | ||
arrit | 0 | 17,654,098,093 | 100% | ||
bilpcoinpower | 0 | 239,814,484 | 10% | ||
toni.pal | 0 | 0 | 0.56% |
# According to the Bible, *How should a Christian deal with peer pressure?* https://youtu.be/Ki08j0bnXTA https://i.postimg.cc/SxmKZFY2/image.jpg Comment what you understand of our Youtube Video to receive our full votes. We have 30,000 #SteemPower. It's our little way to **Thank you, our beloved friend.** Check our [Discord Chat](https://discord.gg/vzHFNd6) Join our Official Community: https://beta.steemit.com/trending/hive-182074
author | angdatingdaan |
---|---|
permlink | uy8y5o1t3k |
category | sct |
json_metadata | "" |
created | 2020-01-07 12:00:48 |
last_update | 2020-01-07 12:00:48 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 12:00:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 439 |
author_reputation | -8,429,686,171,540 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 10,000.000 HBD |
percent_hbd | 100 |
post_id | 94,138,953 |
net_rshares | 2,935,477,808 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
angdatingdaan | 0 | 2,935,477,808 | 1% |
와우~
author | goodhello |
---|---|
permlink | q3rzhd |
category | sct |
json_metadata | {"tags":["sct"],"app":"steemcoinpan/0.1","canonical_url":"https://www.steemcoinpan.com/@goodhello/q3rzhd"} |
created | 2020-01-08 06:32:00 |
last_update | 2020-01-08 06:32:00 |
depth | 1 |
children | 0 |
last_payout | 2020-01-15 06:32:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 430,635,914,360,128 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,170,479 |
net_rshares | 0 |
JCAR 구독보팅입니다. 2020년, 새해 복 많이 받으세요. ^^
author | jsquare |
---|---|
permlink | re-graphql-1-20200107t120258z |
category | sct |
json_metadata | "{"app": "rewarding/0.1.5"}" |
created | 2020-01-07 12:03:03 |
last_update | 2020-01-07 12:03:03 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 12:03:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 81,350,685,034,901 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,139,088 |
net_rshares | 0 |
오호~ Swagger보다 사용하기 더 편할듯하군요~~
author | sct.tom |
---|---|
permlink | q3qrc2 |
category | sct |
json_metadata | {"tags":["sct"],"app":"steemcoinpan/0.1","canonical_url":"https://www.steemcoinpan.com/@sct.tom/q3qrc2"} |
created | 2020-01-07 14:38:27 |
last_update | 2020-01-07 14:38:27 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 14:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 2,885,985,444,336 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,146,061 |
net_rshares | 0 |
Congratulations @happyberrysboy! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@happyberrysboy/payout.png?202001061222"></td><td>You received more than 9000 as payout for your posts. Your next target is to reach a total payout of 10000</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@happyberrysboy) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=happyberrysboy)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-happyberrysboy-20200107t121036000z |
category | sct |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2020-01-07 12:10:36 |
last_update | 2020-01-07 12:10:36 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 12:10:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 946 |
author_reputation | 38,975,615,169,260 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,139,472 |
net_rshares | 0 |
오 새로나온 db인가요. 한번 봐야겠군요 Posted using [Partiko Android](https://partiko.app/referral/tradingideas)
author | tradingideas |
---|---|
permlink | tradingideas-re-happyberrysboy-graphql-1-20200107t125903974z |
category | sct |
json_metadata | {"app":"partiko","client":"android"} |
created | 2020-01-07 12:59:03 |
last_update | 2020-01-07 12:59:03 |
depth | 1 |
children | 1 |
last_payout | 2020-01-14 12:59:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 473,979,989,726,345 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,141,527 |
net_rshares | 0 |
DB가 아닌, 아주아주 쉽게 API 서버를 만들 수 있는 것이 랄까요? 사실 쉽게 API 서버를 만들 수 있는데다가, Server에서 Client로 값을 넘겨 줄때 Server가 값을 정하는 것이 아닌, Client가 원하는 값을 정해서 요청하는 방식입니다요..!!! 아주 꿀!!인것 같아요! ㅎ
author | happyberrysboy |
---|---|
permlink | q3qqwz |
category | sct |
json_metadata | {"tags":["sct"],"app":"steemcoinpan/0.1","canonical_url":"https://www.steemcoinpan.com/@happyberrysboy/q3qqwz"} |
created | 2020-01-07 14:29:24 |
last_update | 2020-01-07 14:29:24 |
depth | 2 |
children | 0 |
last_payout | 2020-01-14 14:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 314,484,142,656,697 |
root_title | "GraphQL 학습 - 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,145,664 |
net_rshares | 0 |