posti-graphql
v3.5.2
Published
Posti Basic Address auto-updater GraphQL server
Downloads
7
Maintainers
Readme
POSTI-GRAPHQL
Description
posti-graphql
extends posti
by adding a GraphQL-server on top of it.
Changelog
Check changes here.
Installation
- 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
Demo playground can be found here.
Demo limitations
- 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
.
PRO-TIP
- 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.
Examples to query
Addresses
Search all the addresses beginning with "mannerheimin" and that has building number 15
{
Addresses (where: {
address: "mannerheimin%"
buildingNumber: 15
}) {
address
postOfficeName
municipalityName
postalCode
oddEven
smallestBuildingNumber1
smallestDeliveryLetter1
smallestBuildingNumber2
smallestDeliveryLetter2
highestBuildingNumber1
highestDeliveryLetter1
highestBuildingNumber2
highestDeliveryLetter2
}
}
Search all the addresses in postal code "00100" that has building number 2
{
Addresses (where: {
postalCode: "00100"
buildingNumber: 2
}) {
address
municipalityName
postalCode
smallestBuildingNumber1
highestBuildingNumber1
}
}
Search all the addresses for "turuntie" and limit for 5 matches
{
Addresses (where: {
address: "turuntie"
}, limit: 5) {
address
municipalityName
postalCode
smallestBuildingNumber1
highestBuildingNumber1
}
}
PostalCodes
Search all the postal codes beginning with 0010*
{
PostalCodes (where: {
postalCode: "0010%"
}) {
postalCode
postOfficeName
entryIntoForceAt
typeCode
regionName
municipalityName
municipalityLanguage
}
}
PostalCodeChanges
Search all the renamed post offices from the changes
{
PostalCodeChanges (where: {
eventCode: 1
}) {
updatedAt
oldPostalCode
oldPostOfficeName
postalCode
postOfficeName
municipalityName
eventCode
}
}
Search all the closed post offices from the changes
{
PostalCodeChanges (where: {
eventCode: 2
}) {
updatedAt
oldPostalCode
oldPostOfficeName
postalCode
postOfficeName
municipalityName
eventCode
}
}
Search all the new post offices from the changes
{
PostalCodeChanges (where: {
eventCode: 3
}) {
updatedAt
oldPostalCode
oldPostOfficeName
postalCode
postOfficeName
municipalityName
eventCode
}
}
Links
Disclaimer
I am not in any way affiliated with nor do I represent anything from Finnish post - Posti.
License
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.