All Downloads are FREE. Search and download functionalities are using the official Maven repository.

entures.graphql-jpa-query-example-merge.0.3.19.source-code.application.yml Maven / Gradle / Ivy

spring:
  h2:
    console.enabled: true

  jpa:
    open-in-view: false
    
  graphql:
    jpa:
      query:
        name: Query
        description: Combined GraphQL Jpa Query for Starwars and Books Example
        useDistinctParameter: true
        enabled: true
        path: graphql
        
starwars:
  hikari:
      minimum-idle: 1
      maximum-pool-size: 20    
  jdbcUrl: jdbc:h2:mem:starwars;DB_CLOSE_ON_EXIT=FALSE
  username: sa
  password: 
  driverClassName: org.h2.Driver

books:
  hikari:
      minimum-idle: 1
      maximum-pool-size: 20    
  jdbcUrl: jdbc:h2:mem:books;DB_CLOSE_ON_EXIT=FALSE
  username: sa
  password: 
  driverClassName: org.h2.Driver




© 2015 - 2024 Weber Informatics LLC | Privacy Policy