feat: Implement getAll and getAllByName graphQL queries

This commit is contained in:
Faruk AYDIN
2021-10-08 21:24:27 +02:00
committed by Ali BARIN
parent a39ae93ca4
commit 0e684570f8
7 changed files with 121 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
import App from '../../models/app';
const getApps = () => {
return App.findAll()
}
export default getApps;