Apache Fineract CN is an Application Framework for Digital Financial Services. It is a system to support nationwide financial transactions and to support the creation of an inclusive, interconnected digital economy for every nation in the world.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import statistics | |
| import random | |
| import time | |
| from typing import List, Dict | |
| import httpx | |
| from tenacity import retry, stop_after_attempt, wait_exponential | |
| @retry( | |
| stop=stop_after_attempt(3), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "test_webhook_transform", | |
| "args": { | |
| "webhook_url": "http://test.com", | |
| "body": { | |
| "event": { | |
| "op": "UPDATE", | |
| "data": { | |
| "old": { | |
| "id": 11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # will be ignored by the allow-list | |
| type Starship { | |
| id: ID! | |
| name: String! | |
| length(unit: LengthUnit = METER): Float | |
| } | |
| # will be ignored by the allow-list | |
| scalar parsec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: test | |
| definition: | |
| url: https://1fyli.sse.codesandbox.io/ | |
| timeout_seconds: 60 | |
| permissions: | |
| - role: test | |
| definition: | |
| schema: |- | |
| schema { query: Query } | |
| type Query { launches: [Launch]! } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: test | |
| definition: | |
| url: https://1fyli.sse.codesandbox.io/ | |
| timeout_seconds: 60 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: test | |
| definition: | |
| url: https://1fyli.sse.codesandbox.io/ | |
| timeout_seconds: 60 | |
| permissions: | |
| - role: test | |
| definition: | |
| schema: |- | |
| schema { | |
| query: Query |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: test | |
| definition: | |
| url: https://1fyli.sse.codesandbox.io/ | |
| timeout_seconds: 60 | |
| permissions: | |
| - role: aa | |
| definition: | |
| schema: |- | |
| schema { query: Query } | |
| type Query { launches: [Launch]! } |
A collection of links to the "Master the JavaScript Interview" series of medium stories by Eric Elliott.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const [upvotePost, { error, loading, data }] = useMutation(UPVOTE_POST, { | |
| variables: { postId: props.post.id, userId: loggedUserId }, | |
| refetchQueries: [{ query: POSTS_LIST }] | |
| }); | |
| if (error) { | |
| error.graphQLErrors.map(error => { | |
| console.log(error); | |
| if (error.extensions.code === "constraint-violation") | |
| toast(`${error.message}`); |
NewerOlder