Skip to content

jurerick/tvm-graphql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

tvm-graphql

Node server with Time-Value-of-Money API ready using GraphQL.

Example mutation query:

mutation{
  computePv(properties:{fv:1000, rate:5, nper:10})
}

Result:

{
  "data": {
    "computePv": -613.91
  }
}

Other mutations available:

computeFv(...):Float!
computeInterestRate(...):Float!
computeNper(...):Float!

Specs