posti-graphql
extends posti
by adding a GraphQL-server on top of it.
Check changes here.
- Install
posti
, follow instructions here. - Install
posti-graphql
yarn add posti-graphql
- Create
npm
script for starting GraphQL server, in yourpackage.json
:"scripts": { "start-server": "posti-server" }
- Start GraphQL server:
yarn start-server
- Play around, either in http://localhost:3000/graphql
Demo playground can be found here.
- Maximum
50
requests per IP-address, within30
minutes. - First
10
requests have 0 delay. - Maximum delay per request
30
seconds. - Every request after the
10th
request will delay for additional2.5
seconds, until30
seconds of delay, i.e.:11th
request = 2.5sec12th
request = 5sec13th
request = 7.5sec20th
request = 25sec22nd
request = 30sec50th
request = 30sec51st
request = error message that the maximum requests has been exceeded.
- Default
limit
for queries is10
. - Maximum allowed
limit
for queries is50
.
- Press
CTRL + Space
orALT + Space
in the Playground to open the autocomplete menu. - Click the Green
Schema
button in the right corner to open the GraphQL schema.
{
Addresses (where: {
address: "mannerheimin%"
buildingNumber: 15
}) {
address
postOfficeName
municipalityName
postalCode
oddEven
smallestBuildingNumber1
smallestDeliveryLetter1
smallestBuildingNumber2
smallestDeliveryLetter2
highestBuildingNumber1
highestDeliveryLetter1
highestBuildingNumber2
highestDeliveryLetter2
}
}
{
Addresses (where: {
postalCode: "00100"
buildingNumber: 2
}) {
address
municipalityName
postalCode
smallestBuildingNumber1
highestBuildingNumber1
}
}
{
Addresses (where: {
address: "turuntie"
}, limit: 5) {
address
municipalityName
postalCode
smallestBuildingNumber1
highestBuildingNumber1
}
}
{
PostalCodes (where: {
postalCode: "0010%"
}) {
postalCode
postOfficeName
entryIntoForceAt
typeCode
regionName
municipalityName
municipalityLanguage
}
}
{
PostalCodeChanges (where: {
eventCode: 1
}) {
updatedAt
oldPostalCode
oldPostOfficeName
postalCode
postOfficeName
municipalityName
eventCode
}
}
{
PostalCodeChanges (where: {
eventCode: 2
}) {
updatedAt
oldPostalCode
oldPostOfficeName
postalCode
postOfficeName
municipalityName
eventCode
}
}
{
PostalCodeChanges (where: {
eventCode: 3
}) {
updatedAt
oldPostalCode
oldPostOfficeName
postalCode
postOfficeName
municipalityName
eventCode
}
}
I am not in any way affiliated with nor do I represent anything from Finnish post - Posti.
MIT License
Copyright (c) 2018 Kimmo Saari
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.