If we want to start graphql mesh after some initialization step, it would be better that we could add init.sh to initialize before starting graphql mesh.
example) Just running repeatedly until success.
#!/bin/bash
while true; do
yarn mesh serve && break
done
If we want to start graphql mesh after some initialization step, it would be better that we could add
init.shto initialize before starting graphql mesh.example) Just running repeatedly until success.