@@ -56,9 +56,9 @@ parseRavenMode = subparser
56
56
( command " serve" (info (helper <*> serveOptsParser)
57
57
( progDesc " Start the HTTP api server" ))
58
58
<> command " export" (info (pure ROExport )
59
- ( progDesc " Export raven 's schema to stdout" ))
59
+ ( progDesc " Export graphql-engine 's schema to stdout" ))
60
60
<> command " clean" (info (pure ROClean )
61
- ( progDesc " Clean raven 's metadata to start afresh" ))
61
+ ( progDesc " Clean graphql-engine 's metadata to start afresh" ))
62
62
<> command " execute" (info (pure ROExecute )
63
63
( progDesc " Execute a query" ))
64
64
)
@@ -80,7 +80,7 @@ parseArgs = execParser opts
80
80
optParser = RavenOptions <$> parseRawConnInfo <*> parseRavenMode
81
81
opts = info (helper <*> optParser)
82
82
( fullDesc <>
83
- header " raven - Hasura's datastore " )
83
+ header " Hasura's graphql-engine - Exposes Postgres over GraphQL " )
84
84
85
85
printJSON :: (A. ToJSON a ) => a -> IO ()
86
86
printJSON = BLC. putStrLn . A. encode
@@ -146,7 +146,7 @@ main = withStdoutLogger ravenLogGen $ \rlogger -> do
146
146
res <- runTx ci $ migrateCatalog currentTime
147
147
either ((>> exitFailure) . printJSON) putStrLn res
148
148
149
- cleanSuccess = putStrLn " successfully cleaned raven related data"
149
+ cleanSuccess = putStrLn " successfully cleaned graphql-engine related data"
150
150
151
151
printConnInfo ci =
152
152
putStrLn $
0 commit comments