Madd.is

Results 80 comments of Madd.is

This might be related: I just tried to delete a proper mysql database and got the following: ## Ajenti bug report | Info | Value | | --- | ---...

try service php5-fpm restart after that check with ``` service php5-fpm status ``` see if it is running, if not, then restart the whole machine. Restarting solved it for me.

@sohobloo @dzfrontend Is something else missing for the merge?

The savings for RN projects can be used. Our non-complex app has a compile time of 30-45 minutes on bitrise.io which could be improved radically by precompilation. This relates to...

I think the search example from this post is quite good: https://medium.com/the-graphqlhub/graphql-tour-interfaces-and-unions-7dd5be35de0d#.c4hzu9enw As I understand it right now, I would need to write a postgres function which returns either a...

I think with that approach the make clear which types the union combines. Suppose you have two tables: `Person` and `Organization` a union should look something like this: `postgraphql_union__Person__Organization`.

But how can postgraphql know which type the union combines?

@calebmer ah, alright, got it. I did not pay close attention to the types of the attributes. I think I like that, but it would be kind of awkward when...

I can currently somehow achieve what I want through inheritance into another schema. There are two schemas, one for internal functions and my interface tables and my public schema that...

@calebmer what do you require exactly? Some SQL commands to set the tables as described above? ```sql CREATE SCHEMA interfaces; -- no access for PostGraphQL CREATE SCHEMA postgraphql; -- access...